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 ...
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 ...
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 ...
CodeIgniter comes with a Cross Site Scripting prevention filter, which looks for commonly used techniques to trigger JavaScript or other types of code that attempt to hijack cookies or do other ...
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 ...
We take security seriously. CodeIgniter incorporates a number of features and techniques to either enforce good security practices, or to enable you to do so easily. We respect the Open Web ...
CodeIgniter provides an object oriented solution for working with URI’s in your application. Using this makes it simple to ensure that the structure is always correct, no matter how complex the URI ...
This helper is automatically loaded by the framework on every request. Since v4.3.0, if you set Config\App::$allowedHostnames, this returns the URL with the hostname ...
CodeIgniter provides a comprehensive form validation and data prepping class that helps minimize the amount of code you'll write. Before explaining CodeIgniter's approach to data validation, let's ...
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 ...