tuto1.php 199 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 <?php define('FPDF_FONTPATH','../font/'); require('../fpdf.php'); $pdf=new FPDF(); $pdf->Open(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->Output(); ?>