Didn't you see the pdf.gif ?
The text of the page is over the footer of the page.
$pdf=new PDF('P','mm','A4');
$pdf->Open();
$pdf->SetAutoPageBreak('true','16'); <-- change for 56
$pdf->AddPage();
$pdf->AliasNbPages();
My footer :
// 5,5 cm of the bottom
$this->SetY(-55);
But if I put 16 to 56 it makes an error because of the yellow rectangle that is set :
$this->SetFillColor(255,254,186);
$this->Cell(191,266,'',1,0,'L',1);
How can I do to keep the rectangle and to SetAutoPageBreak at 56 ?
Please