Forum Moderators: coopster
<?php
//Display the previously created PDF file
$path = "CreditReports/".$PDFName;
//echo $path;
$fr = fopen($path, "rb");
$filedata = fread($fr, filesize($path));
fclose($fr);
//octet-stream
header ( "Content-Length: " . filesize ( $path ) );
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=".basename($path));
readfile($path);
?>
I added:
header("Expires: ".date("D, j M Y H:i:s",time()+(300))." UTC");
header("Cache-Control: Public");
header("Pragma: Public");