08-04-2017, 06:32 AM
Is there a way that redirects user to login page if he tries to access a page without logging in.
I have my attempt on doing this but to no avail I failed
I have my attempt on doing this but to no avail I failed
Code:
class Navigation extends CI_Controller
{
protected $data;
public function __construct()
{
parent::__construct();
$this->load->model('user_model');
$this->load->helper('url');
if (!$this->session->userdata('userID') === TRUE){
header('Location: index.php');
}
}
/*
*Load the index page
*/
public function index()
{
$this->load->view('index');
}
public function edit(){
$this->page('dashboard/change_pass','dashboard/change_pass');
}
/*
*Load the admin dashboard page
*/
public function dashboard()
{
$this->page('dashboard/index');
}