Hi !!
Well my aim is to dynamically fill option value from a recordset
//connection stuff
$result = mysql_query($myquery);
<select name="test" size =1 id="myselect">
<option value ="1">one</option>
<?php
// need some codes here to dynamically assign
// the option values from the recordset array $result
?>
help plz
regards