Php show pdf in browser

In my current project I don't want to keep PDF and DOC file on server or open due to security purpose so I want a system where only login user can view or download the files. so to do this have used given below code

Display PDF file on Browser

#############################################

$file = 'myfile.pdf';
$file1 = '/file-dir/'.$file;

ob_clean[];
header["Cache-Control: no-store"];
header["Expires: 0"];
header["Content-Type: application/pdf"];
header["Cache-Control: public"];
header['Content-Disposition: inline; filename="' . $file . '"'];
header["Content-Transfer-Encoding: binary"];
header['Accept-Ranges: bytes'];
readfile[$file1];

#############################################

Download PDF file

#############################################

$file = 'myfile.pdf';
$file1 = '/file-dir/'.$file;

ob_clean[];
header["Cache-Control: no-store"];
header["Expires: 0"];
header["Content-Type: application/pdf"];
header["Cache-Control: public"];
header["Content-Description: File Transfer"];
header["Content-Disposition: attachment; filename=$file"];
header["Content-Transfer-Encoding: binary"];
header['Accept-Ranges: bytes'];
readfile[$file1];

#############################################

Display Doc file on Browser

Their is no way you can display Doc file on browser, you can only user google reader but google reader don't open password protected files, for google reader you need to give public access file to view on browser

In this tutorial, we are going to see how to open a PDF file in browser with PHP. PHP uses standard code to display the pdf file in the web browser. The process of viewing the PDF file involves locating the PDF file on the server. It uses various types of headers to define the composition of the content in the form of Type, Layout, Transfer-Encode, etc. PHP transmits the PDF files to be able to read them on the browser. The browser displays it or downloads it from the localhost server, then displays the pdf.
 

Example 1 : How to open a PDF file in browser with PHP

Bài mới nhất

Chủ Đề