InterviewSolution
Saved Bookmarks
| 1. |
How Can You Load A View In Codeigniter? |
|
Answer» VIEW can't be ACCESSED directly. It is always loaded in the CONTROLLER file. Following function is USED to load a view PAGE: $this->load->view('page_name'); View can't be accessed directly. It is always loaded in the controller file. Following function is used to load a view page: $this->load->view('page_name'); |
|