scroll down menu?
Does that mean a drop down box or a multiple selection option?
Either way it would be very similiar.
What you came up with there is for a check box and if thos are the choices you want in the drop down it would be something like this. if it only has two choices.
$sql = "SELECT fieldname FROM databasename";
$results = mysql_query($sql);
$row = mysql_fetch_array($results);
echo "<SELECT name='choose'>";
echo "<option value='0' ";
if ($results[fieldname] == 0) {
echo "selected";
}
echo "Yes</option>";
echo "<option value='1' ";
if ($results[fieldname] == 1) {
echo "selected";
}
echo "Yes</option>";
echo "</select";