Hi,
I'm programming a site in PHP that has similar functionality to an ASP site. My sessions aren't behaving the same though.
On the ASP site if the user opens two browser windows they can navigate the same site at once and it maintains the state seperately.
On the PHP site the second browser window uses the same state information as the first browser window.
I checked the all cookie data and GET/POST data for anything that could of made the different browser windows unique but did not find anything.
How does the ASP site maintain the different states in the different browser windows, because they want me to make the PHP site the same?
Thanks.