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->Set
In the example the index in "$pdf->ImportPage($i)" is missing.
$pdf->SetImportUse(); $pagecount = $pdf->SetSourceFile([LOCAL_FILEPATH]); for ($i=1; $i<=($pagecount); $i++) { $pdf->AddPage(); $import_page = $pdf->ImportPage($i); $pdf->UseTemplate($import_page); }