0 votes
in CodeIgniter by
How can you load a view in CodeIgniter?

1 Answer

0 votes
by
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');

Related questions

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