Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
//Seitenzahl (zB Seite 1 von 3)
$this->SetTextColor($fs6[0], $fs6[1], $fs6[2]);
$this->SetFont('Arial','','8');
$this->SetXY(149, 50);
$this->AliasNbPages(); // erstmal Anzahl der Seiten berechnen
$this->Cell(38, 4, 'Seite '.$this->PageNo().' von {nb}', 0, 1, 'C');
function AliasNbPages($alias='{nb}')
{
//Define an alias for total number of pages
$this->AliasNbPages=$alias;
}
function PageNo()
{
//Get current page number
return $this->page;
}