Using PHP to populate a <select></select> ?
- by Flins
<select name="select">
</select>
I want to populate the above tag with values from database.
I have written php code up to this.
while($row=mysql_fetch_array($result))
{
}
$row is fetching fetching correct values.. how to add it to the <select>
please help... Am new to programming