14 lines
279 B
PHP
Executable File
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');
|
|
}
|
|
}
|