Welcome Guest, Not a member yet? Register   Sign In
RA_session how to ?
#1

[eluser]Unknown[/eluser]
Hello,

I am a pretty new to codeIgniter.

I am trying to add a 'Remember Me' feature to my website and i'm using the the RA_session library.

I copy/pasted the library to my libraries folder. I tried adding the ra_session->set_userdata() in my login function but it's not working, the session still expires:

Code:
$this->load->library('RA_Session');
...
if ($valid)
{
      $data = array(
        'username' => $this->input->post('username'),
        'is_logged_in' => true      
      );
      $this->ra_session->set_userdata($data);
      $this->session->set_userdata($data);
      redirect('members/home');
}

I would really appreciate it if somebody can explain to me how to use the library.
Thanks.




Theme © iAndrew 2016 - Forum software by © MyBB