I trying to create a custom table using FPDF Cell/MultiCell.
My 1st cell is a MultiCell that has two lines of text. The next cell should then just be pl
MultiCell
this worked for me
$pdf->multicell(120, 5, ' ' . $actividad, 0, 'l', true); $x = $pdf->GetX(); $y = $pdf->GetY(); $pdf->SetXY($x + 120, $y); $pdf->Cell(70, -5, ' ' . $claseActividad, '', 0, 'l', true);
result