Guest User

Untitled

a guest
Dec 24th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. $username = $POST['username'];
  2. $password = $POST['password'];
  3. $email = $POST['email'];
  4.  
  5. $username = $_POST['username'];
  6. $password = $_POST['password'];
  7. $email = $_POST['email'];
  8.  
  9. $username = $_REQUEST['username'];
  10. $password = $_REQUEST['password'];
  11. $email = $_REQUEST['email'];
Add Comment
Please, Sign In to add comment