1
0
mirror of https://github.com/janunger/rheinwerk-video-training.git synced 2025-03-12 02:53:40 +01:00
php7-mysql-data/Kapitel_5/Lektion_11/pdf/fpdf/tutorial/tuto1.php

10 lines
151 B
PHP
Raw Normal View History

2016-08-16 21:20:53 +02:00
<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>