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> </td>
<td> </td>
</tr>
<tr>
<td align="right"><b>User Name:</b> </td>
<td><input name="sLogin" type="text" size="20" maxlength="16"></td>
</tr>
<tr>
<td align="right"><b>Password:</b> </td>
<td><input name="sPassword" type="password" size="20" maxlength="16"></td>
</tr>
<tr>
<td> </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