Jump to content

How to make a simple "Invalid name or Password?


N0L1m1t5

Recommended Posts

I'm taking a big GUESS  8)

<?php
     $check = mysql_query("select*from database where username = '$username' AND password = '$password'") or die(mysql_error());
     while($confirm = mysql_fetch_array($check))
      {
         if($username != $confirm['username'] && $password != $confirm['password'])
              {
                  echo "wow you don't even know your own username and password? go hurt yourself!!!";
               }
         else 
             {
                 header("Location: welcome.php")// redirect after successful longin
              }
       }
?>

the $username is the variable assigned username input by user

the $password is the vaiable assigned to password input by user

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.