简体   繁体   中英

Can I redirect my PDF File to my php homepage?

Good Day, I've been for some solution to my problem. I used TCPDF-master to generate PDF report. The thing is, after I generate a PDF File, and print. I don't know how to redirect it back to my transaction page. I'm using mysqli, php and html to PDF file. Thanks in Advance.

You can't redirect from your PDF to your site. The best solution is to open the PDF in another tab in the browser, so when the user finish to use the PDF only have to close the PDF tab.

If you must generate a link inside the PDF itself the Writehtml() method on your TCPDF object may help. see this link https://tcpdf.org/examples/example_006/

$html = '<a href="whatever">your link text</a>';
$pdf->writeHTML($html, true, false, true, false, '');

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM