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

Last change on this file since 2 was 2, checked in by root, 15 years ago

importo il progetto

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.