php7-mysql-data/Kapitel_5/Lektion_11/pdf_loesung/1_hallowelt.php
2016-08-21 00:15:10 +02:00

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();