p.s: i tried doing so by changing inline to attachment,it worked but it forces download for pdf as well.
header('Content-Disposition: inline; filename="' . $filename . '"');
Complete code:
$file = 'dir/file.pdf';
$filename = 'file.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);

New Topic/Question
Reply



MultiQuote



|