Netscape vs explorer - form won't post vars in netscape

hello there, i have the following html:

<form name="fromLogin" action="php/login.php" method="post">
<table width="100%" height="100%" border="0" cellspacing="0">
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td align="right"><b>User Name:</b>&nbsp;&nbsp;</td>
<td><input name="sLogin" type="text" size="20" maxlength="16"></td>
</tr>
<tr>
<td align="right"><b>Password:</b>&nbsp;&nbsp;</td>
<td><input name="sPassword" type="password" size="20" maxlength="16"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Log In"></td>
</tr>
</table>
</form>

The ‘php/login.php’ page writes the values passed to it (this is for testing purposes). when i use explorer, everything works as expected - the login and password are displayed. when i use netscape, the login and password are not there.

Anyone know about this problem? i’m using netscape 7.2, and explorer 6.
Thanks in advance for your help!!
Jeremy

i don’t know anything about php, but with javascript i know that netscape and IE require different commands for things dealing with form elements.

for example, if i wanted to get the information from sLogin in netscape, i would need to use parent.fromLogin.sLogin.document but in IE i only need parent.fromLogin.sLogin

in conclusion:
different pages compatable with netscape and IE. i don’t know how else to help you, but since no one else answered your question, i figured i would try :\