hi karen
this is dips
i have found out this piece of code
from book php essentials
chapter no 7
and the php file will be
admin_modrecord1.php
go and check it
<select name=\\"sel_record\\">
<option value=\\"\\"> -- Select an Item -- </option>
\";
while ($row = mysql_fetch_array($sql_result)) {
$isbn = $row[\"ISBN\"];
$title = $row[\"TITLE\"];
echo \"
<option value=\\\"$isbn\\\">$isbn : $title</option>
\";
}
echo \"
</select>
with regards from dips