How to make a PDF viewer in PHP

I want to open a PDF file with PHP. Do not want to use Flash. Like google doc viewer. I just want to open a PDF file. Can I work with PHP?

+5
source share
2 answers

PHP cannot open and display a PDF file in a browser. In most cases, you just want to send the file to the browser and allow Adobe Reader to open and display the file. However, if you want to extract data from the PDF file itself, then the PDF function built into PHP can be useful.

http://php.net/manual/en/book.pdf.php

+4
source

You cannot BUT You can do it with PHP

creating a preview of each page as a google reader

PDF- PHP?

+2