I must add a linebreak for my images to appear after each other. I have tried the following but it does not work.
$rs['imagepath'] = $imagepath;
$pdf->Image("{$imagepath}\n");
The original code to output the images is below, but it outputs only the first index and the second and third images does not come up... :(
$rs['imagepath'] = $imagepath;
$pdf->Image("{$imagepath}");
The result is in a foreach loop like this:
foreach($select as $index => $rs)
{
$rs['imagepath'] = $imagepath;
$pdf->Image("{$imagepath}");
}