I am using session variables to control logins and page access. I use variables to control different user groups that a user belongs to, so I have quite a few session variables.

I also use a session variable to remember the users last visited page upon refresh.

When the user logs out, I use session_destroy(); to remove all variables. What i would like to do is to maintain the last visited page variable even after the user has logged out.

I think I could do it by using the unset function on every other variable, but there are a lot, and was wondering if there was an easier way?

Thanks Eds

link|improve this question

73% accept rate
feedback

4 Answers

up vote 0 down vote accepted

you can try below code for this,

$Arr_not_destoy_session = array('last_visited_id');

        foreach($_SESSION as $sees_key => $sess_val ){
            if(!in_array($sees_key, $Arr_not_destoy_session)){
                unset($_SESSION[$sees_key]);    
            }   
        }

this will unset all the session variables except 'last_visited_id' only.you can also add more values in this array which you dont want to remove later on..

Thanks.

link|improve this answer
I have tried this and it works perfectly, Many thanks!! Eds – Eds Sep 13 '11 at 10:49
thanks..can you please accept this ans and give up vote to it ..? :) – Chandresh Sep 13 '11 at 10:51
feedback

Well you can destroy the session but before doing so, save the last page into a variable that you will be putting in a new session variable.

$lastPage = $_SESSION['last_page'] $session_destroy(); then create a new session with the $lastPage in it.

Another way is to save the last page the user visited into the user record of your db. (this will make it accessible from everywhere and it wont be location specific)

link|improve this answer
1  
That is also a good idea, just like all the others. It may be something I go with in the future! Thanks!! Eds – Eds Sep 13 '11 at 10:54
feedback

Going back to your existing fall-back solution of using unset(), you say the issue with this is that there are a lot, but that shouldn't make it difficult; I still think this is a good solution to your problem.

Firstly, you could unset them all using a foreach() loop; this would only need a few lines of code:

foreach($_SESSION as $key=>$value) {
    if($key != "the_one_you_want_to_keep") {
         unset($_SESSION[$key]);
    }
}

Another way of doing it would be to organise your session data in sub-arrays, so that you can then clear them out by unsetting the single top-level array variable, but leaving the other session data in other sub-arrays untouched:

unset($_SESSION['user_data']);
//but don't unset $_SESSION['data_to_keep']

Hope that helps.

link|improve this answer
I have gone with another answer for now, but this is good advice, thanks! Eds – Eds Sep 13 '11 at 10:53
feedback

Try to group you session variables in arrays and to unset them you'll just need to unset the one or several arrays in $_SESSION. For example if you keep the user info in the session, try this:

$_SESSION['user_info'] = array(...);

$_SESSION['last_visited_page'] = '...';

After logout you can just unset $_SESSION['user_info'] and keep the $_SESSION['last_visited_page']

link|improve this answer
there is no need to create $_SESSION['user_info'] array..this is useless at all. all the session variables will get in $_SESSION only..Thx – Chandresh Sep 13 '11 at 10:47
IMO it's more useful, because you can unset all you need only unsetting one variable in $_SESSION, instead of doing it one by one – haynar Sep 13 '11 at 10:49
Grouping variables seems like sensible advice, thanks! Eds – Eds Sep 13 '11 at 10:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.