This commit is contained in:
Christian Paminger
2006-11-27 08:46:23 +00:00
parent 69e7513333
commit 0f0296a02a
570 changed files with 69005 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
<?php
define('FPDF_FONTPATH','../font/');
require('../fpdf.php');
$pdf=new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
$pdf->Cell(40,10,'Hello World!');
$pdf->Output();
?>