Advertisement
Guest User

Untitled

a guest
May 28th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. @$test = $_POST['password'];
  3. $password = "abc";
  4.  
  5. if($test == $password){
  6.     echo "you are authorized";
  7. }else{
  8.     echo "you are not authorized";
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement