How to create “remember me checkbox” using Codeigniter session library?

后端 未结 7 1158
梦如初夏
梦如初夏 2020-12-12 18:30

in Codeigniter I am building an Authentication system for my web site and to achieve that I use session library

     session->set_userdata(\'username\')
<         


        
7条回答
  •  感情败类
    2020-12-12 19:01

    You can just put this

    if ($remember) {
    
      $new_expiration = (60*60*24*365);
    
      $this->config->set_item('sess_expiration', $new_expiration);
    
      $this->config->set_item('sess_expire_on_close', FALSE);
    
      $this->session->sess_expiration = $new_expiration;
    
      $this->session->sess_expire_on_close = FALSE;
    
    }
    

提交回复
热议问题