AliasNbPages(); $pdf->SetAutoPageBreak(true, 15); $pdf->AddPage(); $pdf->Image('logo.png',18,13,33); $pdf->SetFont('Arial','B',14); $pdf->WriteHTML('

PHPGang Programming Blog, Tutorials, jQuery, Ajax, PHP, MySQL and Demos


Website: www.phpgang.com


How to Convert HTML to PDF with fpdf example'); $pdf->SetFont('Arial','B',7); $htmlTable='
Name: '.$_POST['name'].'
Email: '.$_POST['email'].'
URl: '.$_POST['url'].'
Comment: '.$_POST['comment'].'
'; $pdf->WriteHTML2("


$htmlTable"); $pdf->SetFont('Arial','B',6); $pdf->Output(); ?>