[FEAT] Move Legacy code into a legacy directory

This commit is contained in:
NADAL Jean-Baptiste
2026-02-13 10:44:51 +01:00
parent bfb703e6b9
commit 5066e1d54f
142 changed files with 194 additions and 0 deletions

11
legacy/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();
?>