saturngod
saturngod

Reputation: 24949

How to make PDF viewer in PHP

I want to open PDF file with PHP. Don't want to use Flash. Like google doc viewer. I just want to open PDF file. Can I do with PHP ?

Upvotes: 6

Views: 31319

Answers (2)

ucefkh
ucefkh

Reputation: 2531

You can't BUT You can make one with PHP

making a previews of each page like google reader

this links may help you How do I convert a PDF document to a preview image in PHP?

Upvotes: 2

TehDrew
TehDrew

Reputation: 76

PHP cannot natively open and display a PDF file to the browser. In most cases you want to just send the file to the browser and allow the Adobe Reader to open and display the file. However, if you are looking to pull data out of the PDF itself, then the PDF function built-into PHP may be of some help.

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

Upvotes: 5

Related Questions