Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. if(authenticationIsValid($token)){
  3. doSomething()
  4. }else{
  5. exit(0)
  6. }
  7. ?>
  8.  
  9. <?php
  10. $userName = $_POST['username'];
  11. $password = $_POST['password'];
  12.  
  13. createAccount($username,$password);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement