File "tuto1.php"

Full Path: C:/wamp64/www/PAGOS-T3/fpdf/tutorial/tuto1.php
File size: 161 bytes
MIME-type: text/x-php
Charset: 8 bit

<?php
require('../fpdf.php');

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hola, Mundo!');
$pdf->Output();
?>