I hate Netscape. This is just a snippet of code for a dynamic drop down menu that works good in IE but doesn't show up in Netscape. Can someone tell me how to get this puppy working?
<SELECT NAME=\"country\">";
for($i=0; $i<$getcountrynumrow; $i++) { $answer = mysql_fetch_object($getcountry); print "<OPTION VALUE=\"$answer->country\"> $answer->country";
}
Thanks,
M