Your IP : 172.28.240.42


Current Path : /var/www/html/clients/pv.e-nk.ru/tutorial/
Upload File :
Current File : /var/www/html/clients/pv.e-nk.ru/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();
?>