Add Script of the site

This commit is contained in:
jb
2009-09-15 21:09:52 +00:00
parent b6564df50a
commit 972b38a0ec
24 changed files with 4819 additions and 0 deletions

11
fpdf/tuto1.php Executable file
View File

@@ -0,0 +1,11 @@
<?php
define('FPDF_FONTPATH','./font/');
require('fpdf.php');
$pdf=new FPDF();
$pdf->Open();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World !');
$pdf->Output();
?>