source: trunk/elezioni/trunk/client/inc/hpdf/_fpdf/tutorial/tuto1.php@ 44

Last change on this file since 44 was 44, checked in by luciano, 14 years ago
File size: 158 bytes
Line 
1<?php
2require('../fpdf.php');
3
4$pdf=new FPDF();
5$pdf->AddPage();
6$pdf->SetFont('Arial','B',16);
7$pdf->Cell(40,10,'Hello World!');
8$pdf->Output();
9?>
Note: See TracBrowser for help on using the repository browser.