RE: [PHP] Different sessions, same client

2011-01-24 Thread Tommy Pham
> -Original Message- > From: Donovan Brooke [mailto:li...@euca.us] > Sent: Monday, January 24, 2011 7:49 AM > Cc: php-general@lists.php.net > Subject: Re: [PHP] Different sessions, same client > > [snip] > > > session_name(uniqid()); > >

Re: [PHP] Different sessions, same client

2011-01-24 Thread Donovan Brooke
[snip] YAY! it worked!! so then i tried this: '; print_r($_SESSION); echo ''; ?> and it doesn't preserve the older session information... so I must be doing something wrong. I can assume that because the name is being regenerated new each time, that the old "previous" session is destroyed (

RE: [PHP] Different sessions, same client

2011-01-24 Thread Tommy Pham
> -Original Message- > From: Steve Staples [mailto:sstap...@mnsi.net] > Sent: Monday, January 24, 2011 6:31 AM > To: Tommy Pham > Cc: 'Paul M Foster'; php-general@lists.php.net > Subject: RE: [PHP] Different sessions, same client > > On Sun, 2011-01-2

RE: [PHP] Different sessions, same client

2011-01-24 Thread Steve Staples
s Lensselink' > > Subject: RE: [PHP] Different sessions, same client > > > > > -Original Message- > > > From: Thijs Lensselink [mailto:d...@lenss.nl] > > > Sent: Sunday, January 23, 2011 12:21 AM > > > To: php-general@lists.php.net > &

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
> -Original Message- > From: Tommy Pham [mailto:tommy...@gmail.com] > Sent: Sunday, January 23, 2011 5:23 PM > To: 'Paul M Foster' > Cc: 'php-general@lists.php.net'; 'Thijs Lensselink' > Subject: RE: [PHP] Different sessions, same client &

RE: [PHP] Different sessions, same client

2011-01-23 Thread Tommy Pham
> -Original Message- > From: Thijs Lensselink [mailto:d...@lenss.nl] > Sent: Sunday, January 23, 2011 12:21 AM > To: php-general@lists.php.net > Subject: Re: [PHP] Different sessions, same client > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > >

Re: [PHP] Different sessions, same client

2011-01-23 Thread Paul M Foster
On Sun, Jan 23, 2011 at 11:45:30AM -0500, tedd wrote: > At 11:02 AM + 1/23/11, Ashley Sheridan wrote: > >On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: > > > >> -BEGIN PGP SIGNED MESSAGE- > >> Hash: SHA1 > >> > >> On 01/23/2011 07:33 AM, Paul M Foster wrote: > >> > Storing

Re: [PHP] Different sessions, same client

2011-01-23 Thread tedd
At 11:02 AM + 1/23/11, Ashley Sheridan wrote: On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: > Storing any sort of login/auth data in cookies has regularly been panned > on this list

Re: [PHP] Different sessions, same client

2011-01-23 Thread Ashley Sheridan
On Sun, 2011-01-23 at 09:21 +0100, Thijs Lensselink wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 01/23/2011 07:33 AM, Paul M Foster wrote: > > Storing any sort of login/auth data in cookies has regularly been panned > > on this list. The preference seems to be to store whatever

Re: [PHP] Different sessions, same client

2011-01-23 Thread Thijs Lensselink
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/23/2011 07:33 AM, Paul M Foster wrote: > Storing any sort of login/auth data in cookies has regularly been panned > on this list. The preference seems to be to store whatever login/auth > information *must* be stored in the $_SESSION variable. >

[PHP] Different sessions, same client

2011-01-22 Thread Paul M Foster
Storing any sort of login/auth data in cookies has regularly been panned on this list. The preference seems to be to store whatever login/auth information *must* be stored in the $_SESSION variable. Well and good. My problem, however, is that I have multiple applications in different tabs running