|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Flash front end PHP Backend
Hi there...
I currently have a listbox that is used to display members names pulled from a msql dbase, displayed in a html page using the following code snippet: <select name="memname"> <?php include ("connect.php"); $qry = "SELECT username FROM dsn_members ORDER BY username ASC"; $rlt = mysql_query($qry); if (mysql_num_rows($rlt)) { while ($row = mysql_fetch_array($rlt)) { echo "<option value="".$row[0].""> ".$row [0]."</option>"; } } ?> </select> I am looking at displaying the same data in a listbox contained in a flashmx movie. Can anyone offer suggestions on how the listbox in the flash movie would be populated with the data. |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Flash front end PHP Backend |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|