Advertisement
jamboljack

Controller Export

Jul 13th, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. $this->load->library('pdf');
  2. $param = '"en-GB-x","A4","","",10,10,10,10,6,3,"L"'; // Landscape      
  3. $pdf = $this->pdf->load($param);
  4. $pdf->SetHeader('');
  5. $pdf->SetFooter('');
  6. $pdf->WriteHTML($html); // write the HTML into the PDF
  7. $pdf->Output($pdfFilePath, 'F'); // save to file because we can
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement