Aditya Vijay
Aditya Vijay

Reputation: 231

showing PDF content in Zend or PHP?

I want to show the content of a PDF file in a div. Anyone can tell how to do it in Zend or PHP?

Upvotes: 2

Views: 485

Answers (1)

GBD
GBD

Reputation: 15981

Try this:

<div>
<object data="test.pdf" type="application/pdf" width="300" height="200">
alt : <a href="test.pdf">test.pdf</a>
</object>
</div>

Reference From : http://www.webdeveloper.com/forum/showthread.php?152923-PDF-within-a-DIV

Upvotes: 2

Related Questions