source: companies/serpro/phpgwapi/inc/fpdf/tutorial/tuto1.php @ 903

Revision 903, 195 bytes checked in by niltonneto, 15 years ago (diff)

Importacao inicial do Expresso do Serpro

Line 
1<?php
2define('FPDF_FONTPATH','../font/');
3require('../fpdf.php');
4
5$pdf=new FPDF();
6$pdf->AddPage();
7$pdf->SetFont('Arial','B',16);
8$pdf->Cell(40,10,'Hello World!');
9$pdf->Output();
10?>
Note: See TracBrowser for help on using the repository browser.