Guest User

Untitled

a guest
May 14th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. $username=$_POST['username'];
  2.       $password=$_POST['password'];
  3.       if(!empty($_POST['username']) && !empty($_POST['password']))
  4.       {
  5.         header("Location:userpage.php");
  6.  
  7.       }
  8.       else
  9.       {
  10.         echo "enter full details";
  11.       }
  12.       print_r($_POST);
Add Comment
Please, Sign In to add comment