Hi all,
i did a search on the previous posts aregarding pdf files and found this code
$pdfFile = "/pdf/me.pdf";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/pdf");
header("Content-Description: File Transfer");
@readfile($pdfFile);
however, i tried to view it on my own test.php to pdf.php, all that was loaded was the pdf driver? how do i let the browser display it?
thanks in advance! (:
will