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