On Thursday 02 September 2004 10:09 am, Michael Gale wrote:
> So if I try and store a variable that would be unique to each window it
> would get over written. Is this a configuration problem ?
>

It sounds to me like you need to turn off session.auto_start in your php.ini 
file and call session_start() on each page so that you can set a unique 
session name for each browser using session_name() function.

Or use PHP 4.3.8 which for some unknown reason creates a new session for your 
site anytime a new browser window has been opened. I'm just kidding here, I 
think that that is a bug. Which does not seem to exist anymore in 4.3.9 (Woo 
Hoo!)

James Hicks

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to