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’);

Related questions

0 votes
asked Dec 30, 2020 in CodeIgniter by SakshiSharma
0 votes
asked Dec 27, 2020 in CodeIgniter by SakshiSharma
...