Skip to content

Instantly share code, notes, and snippets.

@dvdsmpsn
Created July 3, 2012 14:04
Show Gist options
  • Save dvdsmpsn/3039908 to your computer and use it in GitHub Desktop.
Save dvdsmpsn/3039908 to your computer and use it in GitHub Desktop.
// from this:
// HTML output
$this->load->view('common_assets/simple_page', $data, true);
// to this:
// PDF output:
$html = $this->load->view('common_assets/simple_page', $data, true);
$this->load->library('pdf');
$pdf = $this->pdf->load();
$pdf->WriteHTML($html);
$pdf->Output();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment