Answer Posted / Amrendra Kumar Rohit
To add or load a model in CodeIgniter, follow these steps:n- Create your model by extending the CI_Model class and placing it inside the 'application/models' folder.n- Use the `load()` method to load your model wherever you want in your controller.n```phpn$this->load->model('YourModelName');```
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers