0 votes
in CodeIgniter by
Explain how you will load or add a model in CodeIgniter?

1 Answer

0 votes
by
Within your controller functions, models will typically be loaded; you will use the function

$this->load->model (‘Model_Name’);
...