load->view('includes/Header', NULL); // $this->load->view('NewPage1', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('NewPage1', NULL); } /** * This function used to check the Routes */ function Method1() { // $this->load->view('includes/Header', NULL); // $this->load->view('NewPage2', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('NewPage2', NULL); } /** * This function used to check the Routes */ function Method2() { // $this->load->view('includes/Header', NULL); // $this->load->view('NewPage3', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('NewPage3', NULL); } /** * This function used to check the Routes */ function Method3() { // $this->load->view('includes/Header', NULL); // $this->load->view('404', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('NewPage4', NULL); } /** * This function used to check the Routes */ function Method4() { // $this->load->view('includes/Header', NULL); // $this->load->view('access', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('404', NULL); } /** * This function used to check the Routes */ function Method5() { // $this->load->view('includes/Header', NULL); // $this->load->view('NewPage4', NULL); // $this->load->view('includes/Footer', NULL); $this->loadViews('access', NULL); } } ?>