I'm not sure what you want to achieve exactly, but maybe this AddOn can help you do this:
http://www.interpid.eu/fpdf-table
Another way would be to move the pointer, something like this:
$pdf->Cell(100,100,"Text inside first column",1,0,'L');
$pdf->SetX($pdf->GetX() - 35);
$pdf->Cell(35,35,'Text inside second column ',1,0,'C');
Okizb source
share