I want to be able to append an entire pdf document in the document I am creating with mpdf.
I can import one page using the following code:
$mpdf->SetImportUse();
$pagecount = $mpdf->SetSourceFile('testfile.pdf');
$tplId = $mpdf->ImportPage($pagecount, 50, 50, 100, 100);
$mpdf->UseTemplate($tplId, '', '', 100, 100);
$mpdf->Output();
but is there a way to import all pages rather than just the last page?
Its a correctly code
Use page count you get form setting source file in a loop (like below)
In the example the index in "$pdf->ImportPage($i)" is missing.