Files
FHC-Core/include/pdf/tutorial/tuto1.php
T
Christian Paminger 0f0296a02a
2006-11-27 08:46:23 +00:00

11 lines
195 B
PHP

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