Open Flash Plugin for Codeigniter

I created a new OPEN FLASH GRAPH CHART plugin for codeigniter, just in case you want to add a graph chart in your codeigniter framework. Hope it helps! 1. download the OPEN FLASH GRAPH CHART: http://teethgrinder.co.uk/open-flash-chart/ Extract the downloaded file and save the graph.php class into your System/Libraries folder and rename it to opgraph.php. Modify and update this...

Read More

Codeigniter+DOMPdf

This is how I created my dompf plugin for codeigniter used on most of my projects. First lets start off with the files, get a copy of dompdf and extract the files needed. Here’s what you’ll need. on your CI System/plugins Directory make a folder and call it something, I named mine “dompdf” extract the following folders and files from dompdf. system/plugins/dompdf/ include...

Read More

[Codeigniter] – SMTP Gmail SSL/TSL

Sending Email in Codeigniter Using Gmail’s SMTP. <?php $config = Array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.googlemail.com', 'smtp_port' => 465, 'smtp_user' => 'gmail.login@googlemail.com', 'smtp_pass' => 'your_password', ); $this->load->library('email',...

Read More

Codeigniter+tcpdf Plugin

This is how I integrated tcpdf and CI. First things first get your tcpfd class here. Extracted the following to the system/plugins Folder tcpdf/cache Folder tcpdf/config Folder tcpdf/fonts Folder (kind of big almost 9MB) tcpdf/barcodes.php tcpdf/htmlcolors.php tcpdf/tcpdf.php tcpdf/unicode_data.php Hoping that I know what I’m doing and moved on in creating the tcpdf_pi.php and saved it to...

Read More