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
lways use a DB to store sessions... Much nicer > > HTH > > Dan > > - > Dan Parry > Senior Developer > Virtua Webtech Ltd > http://www.virtuawebtech.co.uk > -Original Message- > From: Dallas Cahker [mailto:[EMAIL PROTECTED] > Sent: 04 April 2006 16:19 > To:

RE: [PHP] php, sessions and ie

2006-04-04 Thread Dan Parry
://www.virtuawebtech.co.uk -Original Message- From: Dallas Cahker [mailto:[EMAIL PROTECTED] Sent: 04 April 2006 16:19 To: php-general@lists.php.net Subject: [PHP] php, sessions and ie I've been hearing some of my friends saying there is an issue with Session in PHP and IE having problems with

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

[PHP] php, sessions and ie

2006-04-04 Thread Dallas Cahker
I've been hearing some of my friends saying there is an issue with Session in PHP and IE having problems with them. Is that true? If it is how do people get around this? Session information saved to db? Session id in cookie?