Answers for "set session in codeigniter for 1 hour"

3

how to set session timeout in codeigniter

You can update your session expiration time by increasing this variable in config file:

$config['sess_expiration'] = 'somevalue'.
Set $config['sess_expiration'] = 0, if you want it to never expire.
Posted by: Guest on October-06-2021

Browse Popular Code Answers by Language