ok i made a login and when i put in a sn and pw it goes to page cannot be dispplayed when i click on the submit button heres my code for it and i liked it to all the other pages
www.babesoncams.com/login.php go see
<?php
$PageTitle = "Login Page";
require ("header.php");
if ($Message == "Invalid") {
print ("<b><center><font color=red>The username and password you entered do not match what is on file. Please try again!</font></center></b>\n");
}
print ("<Form Action=\"HandleLogin.php\" method=post>\n");
print ("<center>Username: <input type=text name=UserName><BR></center>\n");
print ("<center>Password: <input type=Password name=Password><br></center>\n");
print ("<center><input type=Submit name=Submit value=\"Submit!\"><br></center>\n");
print ("<center><input type=Reset name=Reset value=\"Reset!\"></center>\n");
require ("footer.php");
?>