commitall
This commit is contained in:
9
application/third_party/fpdf/tutorial/tuto1.php
vendored
Normal file
9
application/third_party/fpdf/tutorial/tuto1.php
vendored
Normal 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();
|
||||
?>
|
Reference in New Issue
Block a user