|
Posted by Pablito on 08/17/06 10:07
At last I used this:
<?
$File="newspaper.pdf";
ini_set('zlib.output_compression','Off');
header("Pragma: public");
header('Expires: ' . gmdate('D, d M Y H:i:s', time()+24*60*60) . ' GMT');
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: must-revalidate");
header("Content-type: application/pdf");
header("Content-Length: ".filesize($file));
header("Content-disposition: inline; filename=$file");
header("Accept-Ranges: ".filesize($file));
readfile($file);
exit();
?>
that do not work like others
Pablito
Navigation:
[Reply to this message]
|