first commit

This commit is contained in:
2022-12-30 14:19:42 -07:00
commit 83e2831791
112 changed files with 12156 additions and 0 deletions

9
tutorial/tuto1.php Normal file
View File

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