source: companies/celepar/phpgwapi/inc/fpdf/tutorial/tuto1.php @ 763

Revision 763, 185 bytes checked in by niltonneto, 15 years ago (diff)

Importação inicial do Expresso da Celepar

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.