1.

Explain Codeigniter Library. How Will You Load It?

Answer»

CODEIGNITER provides a rich set of libraries. It is an essential part of CodeIgniter as it increases the developing speed of an application. It is LOCATED in the system/library.

It can be loaded as FOLLOWS,

$this->load->library('class_name');

CodeIgniter provides a rich set of libraries. It is an essential part of CodeIgniter as it increases the developing speed of an application. It is located in the system/library.

It can be loaded as follows,

$this->load->library('class_name');



Discussion

No Comment Found