Login
Remember
Register
Ask a Question
How can you load a view in CodeIgniter?
0
votes
asked
Dec 30, 2020
in
CodeIgniter
by
SakshiSharma
How can you load a view in CodeIgniter?
#codeigniter-load-view
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 30, 2020
by
SakshiSharma
In the Codeigniter, the View can't be accessed directly as of the fact that it is loaded in the controller file for always. Here is the function that is depicted below is used to load a view
page:
$this->load->view('page_name');
...