Viewing 1 to 3 of 3 items
Tag Archives: database

Storing Codeigniter Session Data to a Database

One of the interesting things about CodeIgniter is how it creates and handles sessions. CodeIgniter doesn’t use native PHP sessions. Instead it uses a cookie to store the serialized data. This method, according to the guide, offers more flexibility for developers. In this example we’re going to try out the CI session class, and explore  Full Article…

2

CodeIgniter with Multiple Database Support

** UPDATED on 2010-09-06 ** Over the last few months I have been using the CodeIgniter framework for several projects. So far, I have been very pleased with its flexibility and even more so with its extensibility. On one my projects, I needed to connect to multiple databases at the same time. CI easily supports  Full Article…