home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / fpdf / tutorial / tuto1.php < prev    next >
Encoding:
PHP Script  |  2004-12-31  |  158 b   |  10 lines

  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. ?>
  10.