i have a php page where i have a link which calls a controller function page_view. within that controller function there are some codes which retrieve data using models and store in variable data then a view is loaded as $this->load->view('common/view_plan',$data);
in the view_plan page there is a form. when this form is submitted the data in the form is to be saved and then should get redirected to the same view_plan. so i wrote a controller function to save the data. but how can i redirect to the same page. can i call the controller function page_view from another controller