Sampanna Rimal 9cd05ef3cb commitall
2024-07-10 18:28:19 +05:45

10 lines
151 B
PHP

<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>