Guest User

Untitled

a guest
Jun 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. header('Content-type: text/plain');
  2. header('Content-disposition: attachment; filename="test.txt"');
  3.  
  4. <?
  5. header ("Content-Type: application/download");
  6. header ("Content-Disposition: attachment; filename=$yourfile");
  7. header("Content-Length: " . filesize("$yourfile"));
  8. $fp = fopen("$yourfile", "r");
  9. fpassthru($fp);
  10. ?>
Add Comment
Please, Sign In to add comment