Footer()
class PDF extends FPDF
{
function Footer()
{
// Idź do 1.5 cm od spodu
$this->SetY(-15);
// Wybierz czcionkę Arial italic 8
$this->SetFont('Arial','I',8);
// Drukuj centralnie numer strony
$this->Cell(0,10,'Page '.$this->PageNo(),0,0,'C');
}
}