Earnie Boyd wrote:
No, with a TRUE value this prevents the session id being passed in the $_GET array. PHP used to pass the session id by default appended to the URL. Now by default it only uses cookies to store the session id.
Ah. Thanks. So, if I set ini_set('session.use_only_cookies', 0); that means that PHP will then include the session id in $_GET ? How does this make sessions expire more easily?
Daniel.