Re: sessions causing refreshing not to work [message #178324 is a reply to message #178315] |
Mon, 04 June 2012 05:59 |
Arno Welzel
Messages: 317 Registered: October 2011
Karma:
|
Senior Member |
|
|
Michael Joel, 03.06.2012 05:17:
> I have page data being sent through a php script that uses sessions to
> pass along variables. These vars are used to load data.
>
> If a user opens a page, everything works fine.
> If they open another in a new window it works fine.
> If they tab back over to the original browser window and hit refresh it
> switches to the last page they opened in the other window.
>
> This is because sessions is keeping that last var data in memory so the
> old page when refreshed reads the new var data and opens new data
> instead of refreshing the old.
Well - thats what sessions are made for - manage a state for a *client*,
not a single *window* or tab.
> How would I go about fixing this so a page doesn't lose it's var data on
> refresh?
Think about your concept. Either you use a state within the session or
you use the URL (or URL parameters) to determine, what to display. But
the session will always be the same, even if the user opens multiple
windows/tabs within the same browser.
--
Arno Welzel
http://arnowelzel.de
http://de-rec-fahrrad.de
|
|
|