Reputation: 231
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
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