Created
April 19, 2025 00:51
-
-
Save estefanionsantos/366e61f99a6207ee5c4f1674fbcef263 to your computer and use it in GitHub Desktop.
fpdf-tuto1-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Rubricate\Fpdf\FileFpdf; | |
$pdf = new FileFpdf(); | |
$pdf->addPage(); | |
$pdf->setFont('Arial','B',16); | |
$pdf->cell(40,10,'Hello World!'); | |
$pdf->output(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment