Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Explain how you will load or add a model in CodeIgniter?
Home
CodeIgniter
Explain how you will load or add a model in CodeIgniter?
0
votes
asked
Dec 29, 2020
in
CodeIgniter
by
SakshiSharma
Explain how you will load or add a model in CodeIgniter?
#load-model
#codeigniter-model
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 29, 2020
by
SakshiSharma
Within your controller functions, models will typically be loaded; you will use the function
$this->load->model (‘Model_Name’);
...