Created
July 3, 2012 14:04
-
-
Save dvdsmpsn/3039908 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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