This isn't PHP related, but I thought maybe y'all could help me. I'm doing a project that needs to work in both IE and Netscape. It's almost no HTML, so that isn't a problem. However, in my <select> pull-downs, netscape won't recognize the option that has the SELECT parameter--it just displays it with the first one selected as if the SELECT wasn't even there--
<select name="hire" onChange="location.href='main_screen.php?user_id=&year=2001&hire='+form.hire.options[form.hire.selectedIndex].value">
<option selected>Choose type of new-hire:</option>
<OPTION value="all" >Show All names</option>
<OPTION>- - - - - - -</option>
<OPTION VALUE="coop" >Co-Op</OPTION>
<OPTION VALUE="elid" >Entry Level Interim - Day</OPTION>
<OPTION VALUE="elin" SELECTED>Entry Level Interim - Night</OPTION>
<OPTION VALUE="elc" >Entry Level College</OPTION>
<OPTION VALUE="extec" >Exempt Technical</OPTION>
<OPTION VALUE="exadm" >Exempt Admin.</OPTION>
<OPTION VALUE="nextec" >Non-Exempt Technical</OPTION>
<OPTION VALUE="nexadm" >Non-Exempt Admin.</option>
<OPTION VALUE="exec" >Executive</option>
<OPTION VALUE="sales" >Sales</option>
</select>
when I run that through IE, its perfect, on NS, it won't select "Entry Level Interim - Night"...
any ideas?