I am using codeigniter and what i want to do is when user logs in, I am storing his first name and last name in session.
i have header file which i include in all the views
i want to show something like this
welcome “amit patil” | Logout
where “amit patil” is coming from session.
- How can i access session value and display in header file
-
I know it can be possible with this
$data['admin_fname'] = $this->session->userdata("first_name"); $this->load->view("header",$data); -
I dont want to repeat this process in all the controllers, Is there any easy way ??
You can create an helper to do it.
And then load the helper with
$this->load->helper()in your controller. If something related to your user changes you will need to change only in the helper.