File: tuto1.php

package info (click to toggle)
php-fpdf 3%3A1.6.dfsg-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 768 kB
  • ctags: 724
  • sloc: php: 2,331; makefile: 42; sh: 4
file content (9 lines) | stat: -rwxr-xr-x 155 bytes parent folder | download
1
2
3
4
5
6
7
8
9
<?php
require('fpdf.php');

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