Skip to content

Instantly share code, notes, and snippets.

@sarathlal-old
Created January 24, 2018 09:28
Show Gist options
  • Save sarathlal-old/fbf92661d0e6311636f953da8e672372 to your computer and use it in GitHub Desktop.
Save sarathlal-old/fbf92661d0e6311636f953da8e672372 to your computer and use it in GitHub Desktop.
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