-
-
Save sarathlal-old/fbf92661d0e6311636f953da8e672372 to your computer and use it in GitHub Desktop.
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
file in server | |
<?php | |
$pdf = new FPDF(); | |
$pdf->AddPage(); | |
$pdf->SetFont('Arial','B',16); | |
$pdf->Cell(40,10,'Hello World!'); | |
$pdf->Output("testsuccess.pdf",'F'); | |
?> | |
file in browser | |
$pdf = new FPDF(); | |
$pdf->AddPage(); | |
$pdf->SetFont('Arial','B',16); | |
$pdf->Cell(40,10,'Hello World!'); | |
$pdf->Output('D','filename.pdf'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment