I'm working on an FPDF project. I've made an HTML/PHP form where you can upload multiple images... now I want them to show in my FPDF.
This is the code that I've now:
$pdf->AddPage();
$query1 = "SELECT filename FROM `file_upload` WHERE ncrnummer = '$ncrnummer'";
$result1 = mysqli_query($conn, $query1);
while ($row = mysqli_fetch_assoc($result1)) {
$image = $row['filename'];
$pdf->Image("images/".$image,11,11,90,75, "");
$pdf->Cell(47.5, 10, "", 0, 1);
}
$pdfdoc = $pdf->Output('', 'S');
At this moment it looks like the images are placed over each other...
Is there somebody that knows how to fix this (small) problem?