Forum Moderators: open
User fills out a registration form. On submit, the form takes them to the do_register.php page (ITEMS IN CAPS ADDED BY ME - see code below). In the end result, users with IE are seeing the proper results, but mozilla users (like me) end up seeing a blank page-
do_register.php
<form name="form1" action="do_login.php" method="post">
<input type="hidden" name="txtUsername" value="NAME_IS_PASSED_HERE_CORRECTLY_FROM_PREVIOUS_FORM_PAGE"><input type="hidden" name="txtPassword" value="PASSWORD_IS_PASSED_HERE_CORRECTLY_FROM_PREVIOUS_FORM_PAGE"></form>
<script language="JavaScript">
document.form1.submit();
</script>
do_login.php (stripped out unnecessary codes like HTML, HEAD, etc)
<form name="form1" method="post" action="do_login.php">
<table width="356" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="30"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Username:</font></td>
<td>USERNAMEpassedfromdo_registerpage</td>
</tr>
<tr>
<td width="48%" height="30"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Your
confirmation code:</font></td>
<td width="52%"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">
<input name="txtCode" type="text" id="txtCode">
</font> </td>
</tr>
<tr>
<td height="30" colspan="2"><input name="submit" type="submit" value="OK"></td>
</tr>
</table>
<input type="hidden" name="txtUsername" value="PASSEDHEREFROMPREVIOUS">
<input type="hidden" name="txtPassword" value="PASSEDHEREFROMPREVIOUS">
<input type="hidden" name="OK" value="">
</form>
Thanks for your input!
You can see here using mozilla, but you have to sign up for a fake account to get to the problem part (comes right after the signup). [xchangehits.com...]