-
Notifications
You must be signed in to change notification settings - Fork 7.6k
mPDF with Codeigniter
i have try to find how to make PDF with Codeigniter... but i just find fPDF but that is so Hard... and other way...
now i can add mPDF to Codeigniter 1.7..
[b]Step 1[/b] download [url=http://mpdf.bpm1.com/download]mPDF[/url] first.. [b]Step 2[/b] extract that file.. i rename it to mpdf.. and place outside or inside of your CI application [b]Step 3[/b] copy mpdf/mpdf.php to CI library.. and Open mpdf.php to change some row...
Original: [code]if (!defined('_MPDF_PATH')) define('_MPDF_PATH','');[/code]
Change: [code]if (!defined('_MPDF_PATH')) define('MPDF_PATH','mpdf/');[/code] i place mpdf outside of my CI application [b]Step 4[/b] that is ready to use.. in Controller [code] $this->load->library('mpdf'); $this->mpdf->WriteHTML('
Hello There
'); $this->mpdf->Output(); [/code] [b]Step 5[/b] Enjoy ^^Thanks...
[b][color=black]dezafu[/color].[color=red]redline[/color][/b]