Ask ikawka???

This is an open forum, you can ask us or request for a tutorial or step-by-step how to on how to do stuffs anything within the range of this website’s topic. We will try to come-up with something. There are no promises to be made nor obligations of time on when your request will be posted. We will give our best efforts for free. ^_^ Everyone is invited.

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