Guest User

Untitled

a guest
Apr 12th, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $username = admin;
  4. $password = admin;
  5.  
  6.  
  7.  
  8. if (($_POST["username"]) == ($username) && ($_POST["password"]) == ($password)){
  9. echo 'Helllo!!';
  10. }else{
  11. exit("Username or Password is incorrect.");
  12. die();
  13. }
  14.  
  15.  
  16. ?>​
Add Comment
Please, Sign In to add comment