I am new to PHP and am having a bit of a hard time with using FPDI when it comes to inserting multiple pages.
I have a .pdf file which consists of 3 pages. I ended up saving page 1 as a separate page out of the 3 and that worked with my code, but that is because my code is meant only for 1 page. When I change it back to the 3 page file, it gives me an internal server error.
This is the code which I am using:
<?php
require_once('prog/fpdf.php');
require_once('prog/fpdi.php');
// initiate FPDI
$pdf = new FPDI();
// add a page
$pdf->AddPage();
// set the source file
$pdf->setSourceFile("apps/Par.pdf");
// import page 1
$tplIdx = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplIdx, null, null, 0, 0, true);
// font and color selection
$pdf->SetFont('Helvetica');
$pdf->SetTextColor(200, 0, 0);
// now write some text above the imported page
$pdf->SetXY(40, 83);
$pdf->Write(2, 'THIS IS JUST A TEST');
$pdf->Output();
I am not sure how to turn this code into having the ability to see all 3 pages. Please help me out who ever can.