production/Societes/envoyx/Etats/Pdfpagination.php
2026-03-04 01:48:40 +00:00

14 lines
279 B
PHP
Executable File

<?php
require_once '././Fpdf/fpdf.php';
class Pdfpagination extends FPDF
{
// Pied de page
function Footer()
{
$this->SetY(-15);
$this->SetFont('Arial','',8);
// Numéro et nombre de pages
$this->Cell(0,5,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
}