InterviewSolution
Saved Bookmarks
| 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. |
|