File "tuto1.php"
Full path: /home/atrmarke/public_html/atrdemolive.site/bshop/log/log/fpdf181/tutorial/tuto1.php
File
size: 0.16 KB (160 B bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
require('../fpdf.php');
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>