1.

How we can redirect a page in CodeIgniter?

Answer»

We can USE the redirect() FUNCTION to redirect on any page.

Example

$this->load->helper('URL');       // FIRSTLY you have to load url helper.
if (condition != TRUE) {
    redirect('login_page');
}



Discussion

No Comment Found