Whywill this statement populate the list box. I tested the array in it does contain values. Any suggestions??
<p align="center"><b><font color="#000080" size="4">Ship Equipment</font></b></p>
<form method="POST" action="form3.php">
<?
print '<p><select size="1" name="equip">';
while ( $row= mysql_fetch_array($getequipline))
{
extract($row);
print "<option value='$equipment'>$equipment</option><br>\n";
}
print '</select></p>';
?>
<p><input type="submit" value="Submit" ></p>
</form>