i would like to ask how do i put the data retrieved from the database into my listbox? pls help! thanks!!
regards, ecljc
give an example of the query and the way u want your listbox to be
reg kevin
$q = "select id,name from table"; echo "<select name='foo'>"; while($rs=mysql_fetch_row($q)) { print "<option value='$rs[0]'>$rs[1]</option>";
} echo "</select>";