Sizing a Pull Down Box
Posted: Tue Jul 25, 2006 1:36 pm
In my program I have the following
The "size" value isn't working. My pulldown (while containing the correct number of animals) only shows one, I'd like to make the box larger.
TIA
Code: Select all
echo "<form action='fawns.php' method=post>";
echo "<select name='fawnlist'>";
while ($row = mysql_fetch_array($result)) {
extract($row);
echo "<option value='$deernumber'>$deernumber\n";
}
echo "</select>";
echo "<input type=submit value=submit size='10'>";
echo "</form>";TIA