Showing posts with label Create PDF file. Show all posts
Showing posts with label Create PDF file. Show all posts

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

Popular Posts