Re: [PHP] IE6 session issues

2007-02-28 Thread Dave Goodchild
OK. Blank entries means that as date is passed in and validated via forms, it is then entered into $_SESSION so data can be persistent as the user goes back and forth. These values are eventually entered into the database and are blank, whereas the few values that are entered from $_POST (ie

Re: [PHP] IE6 session issues

2007-02-28 Thread Richard Lynch
On Wed, February 28, 2007 3:21 am, Dave Goodchild wrote: OK. Blank entries means that as date is passed in and validated via forms, it is then entered into $_SESSION so data can be persistent as the user goes back and forth. These values are eventually entered into the database and are

Re: [PHP] IE6 session issues

2007-02-27 Thread Richard Lynch
I recall having a problem with PHP on Windows and IE where however long the session timeout was, that's how long the session lasted, as either the server or the browser was never sending/getting the new cookies. Well, actually, there was an additional 10-minute offset, as the web server clock was

[PHP] IE6 session issues

2007-02-24 Thread Dave Goodchild
Hi all. I am running an online charity lottery and am having issues with IE6 and sessions. To fix them, I added the following at the top of each file: ini_set('session.name', 'tlc'); header(Cache-control: private); session_start(); ...ran a local test in IE6 worked fine, then noticed more