Tuesday, September 2, 2008

Create PDF file using FPDF in php

- Download Script
- Tutorials
- Forum

Example :
require('fpdf.php');

$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>
- Demo

No comments:

Popular Posts