$_SESSION['userid'] = $_POST['id'];
Yes session_start() is on top of the page.
After this I have a link to another page that simply displays the session value like so
print $_SESSION['userid']. In IE6 and 7 everything works fine even with TWO windows open. I can type different values in the input box on the first window, submit it, and refresh the second window and the data doesn't change (what I want) think two different people logging in on the same PC with two different windows. I don't want the other to get the values.
However in FireFox with different windows open they "share" the values. So if I log in in the first window as a normal user, then open a second window log in as an admin, refresh the first window, I get the admin session info. in my case just a user id for right now.
Any ideas as to how to prevent this??