Just download fpdf which has fonts and makefonts folder. Run this (makepdf.php) next to both folders and the file fpdf.php
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?Php // connection to database require "dbconnect.php"; require('libs/fpdf.php'); $pdf=new FPDF(); $pdf->AddPage(); $pdf->SetFont('Arial','B',16); $pdf->Cell(40,10,'Hello World!'); $pdf->Output(); ?> |