pnp4nagios/share/pnp/application/vendor/fpdf/tutorial/tuto1.php
2017-10-20 17:10:51 +02:00

10 lines
160 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();
?>