Let me explain what I'm trying to do...
I'm trying to create a form which will write to a file and then 'remember' the entries (as the 'value' property of the text field) for the next time the user comes back to the form.
I did not use cookies directly, but rather a session that registers all the user's initial entries.
In the php.ini file I set
php_value session.cookie_lifetime 86400
Now, this works. The initial entries are called and present when the form is visited after this initial input. BUT... only for approx. 60 minutes... (The session ID changes also, of course, after that time)
If it didn't work at all I'd say "OK, something with the coding is wrong" But it works... So what happens after 60 minutes?