CodeIgniter features wrappers around some of the most popular forms of fast and dynamic caching. All but file-based caching require specific server requirements, and a Fatal Exception will be thrown ...
In addition, you may create your own, custom session drivers based on other kinds of storage, while still taking advantage of the features of the Session class. Sessions will typically run globally ...
Normally the second segment of the URL is reserved for the method name, but in the example above it instead has a product ID. To overcome this, CodeIgniter allows you ...
CodeIgniter gives you access to a Query Builder class. This pattern allows information to be retrieved, inserted, and updated in your database with minimal scripting. In some cases only one or two ...
The CodeIgniter’s Model provides convenience features and additional functionality that people commonly use to make working with a single table in your database more convenient. It comes out of the ...
The Session class permits you to maintain a user’s “state” and track their activity while they browse your site. CodeIgniter comes with a few session storage drivers, that you can see in the last ...
CodeIgniter provides a few functions and variables that are globally defined, and are available to you at any point. These do not require loading any additional libraries or helpers.
BCC Batch Mode, enabling large email lists to be broken into small BCC batches. Sending email is not only simple, but you can configure it on the fly or set your preferences in the ...
The Session class permits you maintain a user's "state" and track their activity while they browse your site. The Session class stores session information for each user as serialized (and optionally ...
The Form Helper file contains functions that assist in working with forms.
If you would like to share a common CodeIgniter framework installation, to manage several different applications, simply put all of the directories located inside your application directory into their ...
Sending email is not only simple, but you can configure it on the fly or set your preferences in a config file. Here is a basic example demonstrating how you might send email. Note: This example ...