vincej Posted April 23, 2012 Share Posted April 23, 2012 Hi - I'm using SESSION variables to keep track of customers who come onto the site to order stuff. For example $_SESSION['customerid'] all the incoming customers. I also use SESSION variables with a different value for the managers to look at and keep track of customer data. eg : $_SESSION['customer']['firstname'] I am expecting many customers and managers to be simultaneously using the site. QUESTION: Do I need to increment the SESSION variable in some way in order to avoid that a session gets overwritten, or will my SESSION variables keep track and keep everything separated by dint of the fact that they contain different values ? so far my testing shows that things are working correctly, but I can only test with 3 / 4 virtual users in different browser windows . Quote Link to comment https://forums.phpfreaks.com/topic/261509-newb-question-on-php-sessions/ Share on other sites More sharing options...
PFMaBiSmAd Posted April 23, 2012 Share Posted April 23, 2012 Session variables are completely separate for each visitor's browser. Quote Link to comment https://forums.phpfreaks.com/topic/261509-newb-question-on-php-sessions/#findComment-1340006 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.