Answers for "codeigniter redirect to same page"

PHP
2

redirect in codeigniter

//You can use redirect in codeigniter by loading helper 'url'
$this->load->helper('url');

//The redirects functions accepts two parameters to execute the function first is 'Location Url' and second parameter allows the developer to use different HTTP commands to perform the redirect "location" or "refresh".
if (!$user_logged_in)
{
  redirect('/account/login', 'refresh');
}
Posted by: Guest on June-04-2020
2

codeigniter redirect

$this->load->helper('url');
redirect('/account/login', 'refresh');
Posted by: Guest on April-24-2020

Code answers related to "codeigniter redirect to same page"

Browse Popular Code Answers by Language