Web Page Caching

CodeIgniter lets you cache your pages in order to achieve maximum performance. Although CodeIgniter is quite fast, the amount of dynamic information

2016-10-15 16:32:47
Alternate PHP Syntax for View Files

If you do not utilize CodeIgniter’s template engine, you’ll

2016-10-15 16:30:51
Using CodeIgniter Drivers

Drivers are a special type of Library that has a parent class and any number of potential child classes. Child classes have access to the parent class, but not their siblings

2016-10-15 16:32:45
Running via the CLI

As well as calling an applications Controllers via the URL in a browser

2016-10-15 16:32:37
Reserved Names

In order to help out, CodeIgniter uses a series of function, method, class and variable names in its operation. Because of this, some names cannot be used by a developer. Following

2016-10-15 16:32:36
Managing your Applications

By default it is assumed that you only intend to use CodeIgniter to manage one application, which you will build in your application/ directory. It is possible, however

2016-10-15 16:32:29
URI Routing

Typically there is a one-to-one relationship between a URL string and its corresponding controller class/method. The segments in a URI normally follow this pattern:

2016-10-15 16:32:45
Auto-loading Resources

CodeIgniter comes with an “Auto-load” feature that permits libraries, helpers, and models to be initialized automatically every time the system runs. If you need certain resources

2016-10-15 16:30:52
Helper Functions

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

2016-10-15 16:32:24
Creating Core System Classes

Every time CodeIgniter runs there are several base classes that are initialized automatically as part of the core framework. It is possible, however, to swap any of the core

2016-10-15 16:32:12