Welcome Guest, Not a member yet? Register   Sign In
[solved]Is it possible to add on attributes into an existing session?
#1

[eluser]Unknown[/eluser]
I have set a session after admin has login
Code:
$data = array(
    'admin_username' => $this->input->post('admin_username'),
    'type'   => 'admin',

   );

  
   $this->session->set_userdata($data);

I would like to know if is possible to add on items once a session has been set.

for example currently in my session, I have 'admin_username' and 'type'
after this session data has set, when running a particular function that require additional information to set in the session, perhaps 'admin_username', 'type' and 'count'

Is it possible to add 'count' attribute inside an existing session?

Many thanks in advance.





Theme © iAndrew 2016 - Forum software by © MyBB