source: branches/version-2_11-dev/data/module/fpdf/tutorial/tuto1.php @ 20993

Revision 20993, 160 bytes checked in by Seasoft, 13 years ago (diff)

#1374 (依存ライブラリのアップデート)

  • FPDF 1.6 -> 1.7
  • FPDI 1.4 -> 1.4.1 (配置パスをFPDFから分離)
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.