Welcome Guest, Not a member yet? Register   Sign In
logout sometimes not working and need to logout again
#1

Dear all,

I have below to handle logout and display information in the header to show after logout. But sometimes, it is unsuccessful. I suspect whether it is good to write this code to handle. Do you have any ideas? Please help


Code:
public function logout(){
        $this->nativesession->delete('user');
        redirect(base_url()); }

In header section of the php page:

Code:
<?php $usr = $this->nativesession->get('user');
     if(!isset($usr) || empty($usr) || $usr["username"]==null) {
               // show login button
          }
Reply




Theme © iAndrew 2016 - Forum software by © MyBB