Ok, I build this login which is really freakin' simple and worked before and all of a sudden stopped working this week. I see nothing wrong with the script (but then again, I haven't been coding in PHP in about year now). Can someone spot an error (if there is one)
***** NOTE: I changed the form method to "GET" so I know the form is passing it to loginverification.php *********
<FORM METHOD="get" ENCTYPE="multipart/form-data" ACTION="loginverification.php">
<?PHP
print "
<table>
<TR>
<TD class=\"bodyplain\" align=\"right\"><b>User Name:</b></td>
<TD><INPUT Type=\"text\" Name=\"adminUser\" Size=15 maxlength=\"15\"></td>
</tr>
<TR>
<TD class=\"bodyplain\" align=\"right\"><b>Password:</b></td>
<TD><INPUT Type=\"password\" Name=\"adminPass\" Size=15 maxlength=\"15\"></td>
</tr>
<TR><TD colspan=\"2\">
<font face=\"arial\" size=\"-2\">
<INPUT Type=\"submit\" value=\"Submit\">
<input type=\"reset\" value=\"Reset\">
</font>
</td></tr>
</table>";
?>
</form>
********* LOGIN VERIFICATION.PHP ************
<?PHP
print "$adminUser, $adminPass<BR>";
?>
This outputs the following page:
,
Great isn't it? I'm stumped. Please help.