Use the redirect() function from the URL Helper.
EDIT: load the url helper:
Example:-
$this->load->helper('url');
if (condition == TRUE) {
redirect('new_page');
}
Example:-
Use redirect() helper function.
Example :
$this->load->helper('url');
if ($logged_in == FALSE)
{
redirect('/login/form/', 'refresh');
}
EDIT: load the url helper:
Example:-
$this->load->helper('url');
if (condition == TRUE) {
redirect('new_page');
}
Example:-
Use redirect() helper function.
Example :
$this->load->helper('url');
if ($logged_in == FALSE)
{
redirect('/login/form/', 'refresh');
}
No comments:
Post a Comment