Re: [PHP] php, sessions and ie

2006-04-06 Thread Dallas Cahker
Message- > From: Dallas Cahker [mailto:[EMAIL PROTECTED] > Sent: 04 April 2006 19:41 > To: php-general@lists.php.net > Subject: Re: [PHP] php, sessions and ie > > How are you destroying the sessions if they leave the site (dont logout). > do > you check on activity or

RE: [PHP] php, sessions and ie

2006-04-04 Thread Chrome
] php, sessions and ie How are you destroying the sessions if they leave the site (dont logout). do you check on activity or something else? On 4/4/06, Dan Parry <[EMAIL PROTECTED]> wrote: > > I have had some issues with sessions and IE in the past and used the > following code to st

Re: [PHP] php, sessions and ie

2006-04-04 Thread Dallas Cahker
How are you destroying the sessions if they leave the site (dont logout). do you check on activity or something else? On 4/4/06, Dan Parry <[EMAIL PROTECTED]> wrote: > > I have had some issues with sessions and IE in the past and used the > following code to start the session > > if (isset($SessI

RE: [PHP] php, sessions and ie

2006-04-04 Thread Dan Parry
I have had some issues with sessions and IE in the past and used the following code to start the session Now, though, I always use a DB to store sessions... Much nicer HTH Dan - Dan Parry Senior Developer Virtua Webtech Ltd http://www.virtua

Re: [PHP] php, sessions and ie

2006-04-04 Thread Wolf
I used to use a database table which housed their information, and their cookie housed their sessionID that the server assigned them when they logged in. Grabbing the sessionID only from the cookie (and their IP) I was able to log most people in (even "dynamic" IPs don't change THAT often). For t