pluke100 Posted August 30, 2006 Share Posted August 30, 2006 Need some helpGot a file called register.php and it prints a box where to type a password and the rest:<html><body><div id="wrap"><h3>Registration</h3><p>Enter the password given by the admin to continue: </p><form action="register2.php" method="post">Password: <input name="pass1" type="password" /> <input type="submit" /></form><p></p></div></body></html>Now register2.php is: (it checks that the password enter is psb)<?$pass1 = $_POST['pass1'];if ($pass1 == "psb") {include("phpAuth_adduser.php");} else { echo "Wrong Password";}?>The phpAuth_adduser.php is a simple registration:If the password is right it shows the right things etc....But when i submit the registration it's printing Wrong Password each time. any ideas ? Link to comment https://forums.phpfreaks.com/topic/19172-password-protecting-a-page/ Share on other sites More sharing options...
Corona4456 Posted August 30, 2006 Share Posted August 30, 2006 I tested your code and it is working fine on my end. I don't know what the problem could be.I type in 'psb' as the password and it works just fine Link to comment https://forums.phpfreaks.com/topic/19172-password-protecting-a-page/#findComment-82979 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.