Initiale Version

This commit is contained in:
Jan Unger
2016-08-16 21:20:53 +02:00
commit 88cf71d772
10930 changed files with 1708903 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
require __DIR__ . '/fpdf/fpdf.php';
class PDF extends FPDF
{
public function Header()
{
$this->Image('logo.png', 10, 6, 40);
$this->SetFont('Arial', 'B', 15);
$this->Cell(80);
$this->Cell(50, 10, 'Rheinwerk Verlag', 1, 0, 'C');
$this->Ln(20);
}
public function Footer()
{
$this->SetY(-15);
$this->SetFont('Times', 'I', 8);
$this->Cell(0, 10, 'Seite ' . $this->PageNo() . ' von {nb}', 0, 0, 'C');
}
}
$pdf = new PDF();
$pdf->AliasNbPages();
$pdf->AddPage();
$pdf->SetFont('Times', '', 12);
for ($i = 1; $i <= 40; $i++) {
$pdf->Cell(0, 10, 'Ausgabe der Zeile ' . $i, 0, 1);
}
$pdf->Output();