Is it possible to have two user data for different timeout / expiration times? Let them say that the first data "param_1" expired after 1 day, and "param_2" expired after a month. How to do this with the CI Session Library. Something like that
$this->session->set_userdata('param_1', 86400); // seconds in a day $this->session->set_userdata('param_2', 2592000); // seconds in a month
php codeigniter-3
Va1iant
source share