CodeIgniter

SSL (HTTPS) URLs and CodeIgniter

Mar 30, 2009Comments

One problem that most CodeIgniter developers will run into eventually is the problem of handling SSL (HTTPS) URL’s. The problem lays in the fact that with CodeIgniter we can define one base URL. This leaves us with either “http” or “https” as the option. So what are we to do? Put the whole site behind SSL? That would be redonkulous.

Reading CSV File With CodeIgniter

Mar 26, 2009Comments

There are many reasons why you might need to read and parse a CSV file. The CSVReader library for the CodeIgniter PHP Framework makes it very simple. Take a look inside for details on getting all the code you need to learn how to read a CSV file with CodeIgniter.