Automatically Loaded Class/Library List of Codeigniter

The followings are the list of library which is initialized automatically.

Benchmarking Class Controller Class Config Class Input Class Loader Class Output Class URI Class

Additionary Profiler Class: This class does NOT need to be initialized. It is loaded automatically by the Output Class if profiling is enabled. http://codeigniter.com/user_guide/general/profiling.html

Naming conventions for Codeigniter

Class names must have the first letter capitalized with the rest of the name lowercase in cotoller and model.

class Blog extends Controller { function index() { echo ‘Hello World!’;} } class Model_name extends Model { function Model_name() { parent::Model(); } }

However you don’t need to have a capital letter for the [...]

Page 8 of 8« First...45678