Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/indem/iiita/fpdf153/tutorial/
Upload File :
Current File : /var/www/html/mmishra/indem/iiita/fpdf153/tutorial/tuto1.php

<?php
require('../fpdf.php');

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