shosei

Force file download

Mar 11th, 2012
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. $file = $_GET["file"];
  2. $download = "http://www.ssn.flinders.edu.au/".$file;
  3.  
  4. if(ini_get('zlib.output_compression')) {
  5.    ini_set('zlib.output_compression', 'Off');
  6.  }
  7.  
  8. header("Pragma: public");
  9. header("Expires: 0");
  10. header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
  11. header("Cache-Control: private",false);
  12. header("Content-type: application/pdf");
  13. header("Content-Disposition: attachment; filename=".basename($download).";" );
  14. readfile("$download");
Add Comment
Please, Sign In to add comment