Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2015
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $pdf = new FPDF();
  2. $pdf->AddPage();
  3.  
  4. foreach ( $finalData AS $finalRow )
  5. {
  6. foreach($finalRow as $one)
  7. {
  8. $pdf->SetFont("Arial", "", "8");
  9. $pdf->Cell(18, 5, $one, 1, 0, "C");
  10. }
  11. $pdf->Ln();
  12. }
  13.  
  14. $pdf->Output();`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement