FPDF is a PHP library which used to generate PDF . FPDF is an open source library. You can use it for any kind of usage and modify it to suit your needs.
<?php
require('fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>