Any suggestions?
for ( $i = 0; $i < 5; $i++ ) {
ob_start();
include("./template_pdf.php");
$perc = "........";
$content = ob_get_clean();
try {
$html2pdf = new HTML2PDF ( 'P', 'A4', 'it', true, 'UTF-8', 5 );
$html2pdf->pdf->SetDisplayMode('fullpage');
$html2pdf->writeHTML ( $content, isset ( $_GET['vuehtml'] ) );
$html2pdf->Output( $perc, 'F');
}
catch ( HTML2PDF_exception $e ) { echo $e; }
}