Hi;
I guess my understanding of SESSIONS is pretty basic. I've written a number of work-related .php based websites/functions that set a number of arrays and values in $_SESSION when the user logs in that are helpful with various tasks as they move through the site.
I do not set any "cookies" on the user's computer...1) Because I don't know how to do that and 2) I don't think I like the concept and don't want users to get miffed at my sites for "messing with" their computers in any way.
Anyway, my organization also uses Outlook Web Access, and users are often logged in to this in another tab or window while using my sites. The problem is, when they log OUT of Outlook Web Access, it appears that that destroys the session values set for MY pages, and when they continue to try to work, all kinds of things needed from SESSION are gone from simple formatting/preference stuff to user-id values needed to keep track of data contributions.
Is there some way/basic concept I need to understand in order to prevent an Outlook Web Access logout from losing MY session values?
Thanks.