Hey,
Ok, got a form. Code is below:
<table width="75%" align="center" border="0" cellspacing="0" cellpadding="3">
<tr>
<td colspan="2" class="Normal"> </td>
<FORM name='login' method=post action="access.php">
</tr>
<tr class="Normal">
<td class="Normal">ID</td>
<td class="Normal">Password</td>
</tr>
<tr>
<td valign="top" class="Normal"><input type="text" value="<?php echo $id; ?>" name="id"></td>
<td valign="top" class="Where"><input type="password" value="<?php echo $password; ?>" name="password">
<br> <br> <strong>Forgotten your password?<br>
Click <a href="passwordretrieval.php">here</a>.</strong></td>
</tr>
<tr>
<td valign="top" class="Normal"> </td>
<td valign="top" class="Where"> <div align="left">
<a href="#" border="0" onclick="document.login.submit();">
<input type="submit" value="Log In" style="font-size: 10pt;">
</a>
</form>
</td>
</tr>
</table>
Now, this works fine in IE, but when I click on the submit button in Netscape, it does nothing...it just stays on that page.
The most STUPID thing though, is if I put this code on a different page, it will work...what gives?
Cheers,
Chris