[wd_asp elements=’search’ ratio=’100%’ id=1]

Create PDF with PHP – Basic

28th October 2018

Php - Miscellaneous

php codehaven

Just download fpdf which has fonts and makefonts folder. Run this (makepdf.php) next to both folders and the file fpdf.php
AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>