Advertisement
Guest User

Jeremy

a guest
Apr 21st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.25 KB | None | 0 0
  1. <?php
  2.  
  3. $host="localhost"; // Host name
  4. $username="*****************"; // Mysql username
  5. $password="*****************"; // Mysql password
  6. $db_name="******************"; // Database name
  7. $tbl_name="users"; // Table name
  8.  
  9. // Connect to server and select databse.
  10. mysql_connect("$host", "$username", "$password")or die("cannot connect");
  11. mysql_select_db("$db_name")or die("cannot select DB");
  12.  
  13. // username and password sent from form
  14. $myusername=$_POST['myusername'];
  15. $mypassword=$_POST['mypassword'];
  16.  
  17. // To protect MySQL injection (more detail about MySQL injection)
  18. $myusername = stripslashes($myusername);
  19. $mypassword = stripslashes($mypassword);
  20. $myusername = mysql_real_escape_string($myusername);
  21. $mypassword = mysql_real_escape_string($mypassword);
  22. $sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
  23.  
  24.  
  25. // Mysqli_num_row is counting table row
  26. $count=mysql_num_rows($result);
  27.  
  28. // If result matched $myusername and $mypassword, table row must be 0 row
  29. if($count==1){
  30.  
  31. // Register $myusername, $mypassword and redirect to file "login_success.php"
  32. session_register("myusername");
  33. session_register("mypassword");
  34. header("location:login_success.php");
  35. }
  36. else {
  37. echo "Wrong Username or Password";
  38. }
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement