Guest User

Untitled

a guest
Nov 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. #Create the table
  2. function BasicTable($header,$data) {
  3. #Create the header.
  4. foreach ($header as $col)
  5. $this->Cell(18,5,$col,1);
  6. $this->Ln();
  7.  
  8. #Get the data
  9. foreach ($data as $row) {
  10. foreach ($row as $col)
  11. #$this->Cell(18,5,$col,1,'R');
  12. $this->Cell(18,5, $col, 1, 0);
  13. $this->Ln();
  14. }
  15. }
  16. }
Add Comment
Please, Sign In to add comment