02-17-2017, 01:29 PM
I try to set a cookie for remember_me:
After the login I get only the Session.
http://prntscr.com/ea2ixb
Thanks for your help.
Tom
PHP Code:
$this->load->helper('cookie');
...
set_cookie(array(
'name' => $name,
'value' => $user,
'expire' => $expire
));
...
After the login I get only the Session.
http://prntscr.com/ea2ixb
Thanks for your help.
Tom