source: sandbox/2.3-MailArchiver/phpgwapi/inc/fpdf/tutorial/tuto1.php @ 6779

Revision 6779, 185 bytes checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

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.