2023-02-27 11:44:33 +01:00

10 lines
158 B
PHP
Executable File

<?php
require('../fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>