How To Generate And Display Tcpdf Pdf On A Page That Has Already Loaded?
I am trying to generate a PDF using TCPDF on the fly and display it in the browser. I have already... Output the PDF as a download Output the PDF inline without any HTML. (using $
Solution 1:
Using the same technique you used to display it inline you could try to load the PDF file using an Iframe:
<html>
<head>
</head>
<body>
<p>some content</p>
<iframe src="/path/to/your/pdf/script.php"></iframe>
</body>
</html>
Post a Comment for "How To Generate And Display Tcpdf Pdf On A Page That Has Already Loaded?"