简体   繁体   中英

Print webpage as PDF in PHP

I am newbie to php.

I have developed small application in PHP. Now I have few label controls in one webpage inside form. that i want to save in pdf. Is there any tool like itextsharp (In ASp.net), where I can export one panel or form to pdf. (By rendering)

I checked fpdf and other. In that we can print text. My label data is coming from MYSQL.

Any suggestion.

I suggest mpdf. I'ts very simple, you can create your html as string and render it as pdf.

require_once("mpdf/mpdf.php");
$html = "<p>Hello World</p>";

$mpdf = new mPDF('c', 'A4');
$mpdf->WriteHTML($html);
print $mpdf->Output();

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