Pergunta

If a user logs in and selects "Remember me for 2 weeks", I want the session to remember them for 2 weeks. If not, it should expire in 2 hours. How do I do this?

Foi útil?

Solução

//if variable two_weeks is set, set session expiration to 2 weeks; otherwise 2 hours  
($two_weeks)?$t='1209600':$t='7200');
$this->session->set_userdata('sess_expiration',$t);
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top