mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 23:23:42 +01:00
10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
|
|
require __DIR__ . '/fpdf/fpdf.php';
|
|
|
|
$pdf = new FPDF();
|
|
$pdf->AddPage();
|
|
$pdf->SetFont('Arial', 'B', 16);
|
|
$pdf->Cell(40, 10, 'Hallo Welt!');
|
|
|
|
$pdf->Output(); |