Guest User

Untitled

a guest
Jan 12th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. PHP Login with MD5 Password? [closed]
  2. $sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
  3.  
  4. $myusername=$_POST['myusername'];
  5. $mypassword=$_POST['mypassword'];
  6.  
  7. $hashedPassword = md5($password);
  8.  
  9. $mypassword = md5($mypassword);
Add Comment
Please, Sign In to add comment