Re: [PHP] creating dropdown lists from fetched arrays.

2002-02-25 Thread William Lovaton
El dom, 24-02-2002 a las 17:39, Matthew Darcy escribió: Hi, I want to create a dropdown list with options from a table. ie HTML BODY ?php $sql_select = select * from dropdown_options; $results = mysql_query($sql_select); while ($row = mysql_fetch_array($results); { echo

RE: [PHP] creating dropdown lists from fetched arrays.

2002-02-25 Thread Jon Haworth
while ($row = mysql_fetch_array($results){ ITYM while ($row = mysql_fetch_array ($results)) { Cheers Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php