source:
trunk/client/inc/hpdf/_fpdf/tutorial/tuto1.php@
64
Last change on this file since 64 was 2, checked in by , 15 years ago | |
---|---|
File size: 158 bytes |
Line | |
---|---|
1 | <?php |
2 | require('../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.