Jump to content

pluke100

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

pluke100's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Need some help Got 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 ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.