Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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!. Your username is $username'
  11. Your password is $PW
  12. Your Email is $email
  13.  
  14.  
  15.  
  16. }
  17.  
  18.  
  19. ?>
  20. <form method='POST'>
  21. <br><input type='text' name = 'username'</input>
  22. <br><input type='password' name = 'password'</input>
  23. <br><input type='text' name = 'email'</input>
  24. <br><input type='submit' name='register'</input>
  25. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement