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 following page contains example code showing how the database class is used. For complete details please read the individual pages describing each function. Note CodeIgniter doesn’t support dots ( ...
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 ...
The HTML Helper file contains functions that assist in working with HTML.
Many functions previously found in the CodeIgniter 3 date_helper have been moved to the Time class in CodeIgniter 4. It is recommended to use the Time class instead. Use Time::now()->getTimestamp() to ...
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 ...
The Database Utility Class contains methods that help you manage your database.
CodeIgniter lets you cache your pages in order to achieve maximum performance. Although CodeIgniter is quite fast, the amount of dynamic information you display in your pages will correlate directly ...
The Form Helper file contains functions that assist in working with forms.
Helpers, as the name suggests, help you with tasks. Each helper file is simply a collection of functions in a particular category. There are URL Helpers, that assist in creating links, there are Form ...
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 ...
When we use the term “Libraries” we are normally referring to the classes that are located in the libraries directory and described in the Class Reference of this user guide. In this case, however, we ...