Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2.  
  3. $username = $_POST['username'];
  4. $email = $_POST['email'];
  5. $PW = $_POST['password'];
  6.  
  7. if (isset($_POST['username']) || (isset($_POST['password'])) {
  8. echo 'FILL IN THE FUCKING SHIT!!!';
  9. else
  10. echo 'Register successful!.
  11. Your username is '.$username.'
  12. Your password is '.$PW.'
  13. Your Email is '.$email.'
  14. ';
  15.  
  16.  
  17.  
  18. }
  19.  
  20.  
  21. ?>
  22. <form method='POST'>
  23. <br><input type='text' name = 'username'</input>
  24. <br><input type='password' name = 'password'</input>
  25. <br><input type='text' name = 'email'</input>
  26. <br><input type='submit' name='register'</input>
  27. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement