Quote:
Originally Posted by hunna03
...
echo "<br><br><br><br><br><center><b>Please login:</b><br><br>
<form method=POST action=home.php>
Username: <input type=text name=\"username\"><br>
Password: <input type=password name=\"password\"><br><br>
<input type=submit value=Login>
</center></form>
...
|
Should have "s as:
Code:
<form method=\"POST\" action=\"home.php\">
Username: <input type=text name=\"username\"><br>
Password: <input type=password name=\"password\"><br><br>
<input type=\"submit\" value=\"Login\">
If you still have problems verify you are POSTing the variables by temporarily adding this to auth.php right after <?:
Code:
if ($_POST) {
print_r($_POST);
exit;
}
It will show the POST variables and stop.