Skip to main content
AI Assist is now on Stack Overflow. Start a chat to get instant answers from across the network. Sign up to save and share your chats.
Improved formatting.
Source Link
Pang
  • 10.2k
  • 146
  • 87
  • 126

first, you need to load URL helper like this type or you can upload within autoload.php file:

 first, you need to load URL helper like this type or you can upload within autoload.php file: $this->load->helper('url');  if (!$user_logged_in)  {   redirect('/account/login', 'refresh');  }  
 first, you need to load URL helper like this type or you can upload within autoload.php file: $this->load->helper('url');  if (!$user_logged_in)  {   redirect('/account/login', 'refresh');  }  

first, you need to load URL helper like this type or you can upload within autoload.php file:

$this->load->helper('url'); if (!$user_logged_in) { redirect('/account/login', 'refresh'); } 
Source Link

 first, you need to load URL helper like this type or you can upload within autoload.php file: $this->load->helper('url'); if (!$user_logged_in) { redirect('/account/login', 'refresh'); }