[PHP] Re: Multiple Session Buffers

2007-07-14 Thread Tony Marston
The only way to do that is for each session to use a different session name other than the default PHPSESSID as a session_id is tied to a particular session_name, but then you would have to include a method of propagating this new session name between pages in the same session, either through th

[PHP] Re: Multiple Session Buffers

2007-07-14 Thread Al
You guys confirmed my understanding, it can't be done in a reasonable manner. I'm adding a simple CAPTCHA to an existing page and don't want to bother tracing the code that modifies the session buffer. It's obvious that the code is resetting the buffer, so it messes up my saving of the securit

Re: [PHP] Re: Multiple Session Buffers

2007-07-17 Thread Richard Lynch
On Sat, July 14, 2007 1:26 pm, Al wrote: > You guys confirmed my understanding, it can't be done in a reasonable > manner. > > I'm adding a simple CAPTCHA to an existing page and don't want to > bother tracing the code that > modifies the session buffer. It's obvious that the code is resetting > t

Re: [PHP] Re: Multiple Session Buffers

2007-07-18 Thread Al
The existing page had an include(file), before my CAPTCHA code, which included a session_destroy(). Thus, when the user refreshed the page with a Submit, it called the include(file) which destroyed the data I was trying to save in the session handler, from the previous page rendering. Anyhow,