Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $file = $_GET["file"];
- $download = "http://www.ssn.flinders.edu.au/".$file;
- if(ini_get('zlib.output_compression')) {
- ini_set('zlib.output_compression', 'Off');
- }
- header("Pragma: public");
- header("Expires: 0");
- header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
- header("Cache-Control: private",false);
- header("Content-type: application/pdf");
- header("Content-Disposition: attachment; filename=".basename($download).";" );
- readfile("$download");
Add Comment
Please, Sign In to add comment