Could anyone helpme with this issue?, please.
When the first time a php calls a session_start(), a session identifier is generated and by default a set-cookie header is included in the response.
This creates a session cookie on the client browser called PHPSESSID with 0 sec of life. (unless you change the session.cookie_lifetime on the php.ini to another value)
Also a the sametime a sessionfile is created on the /tmp directory of the server using a session identifier prefixed with sess_ (example.: sess_jksdh546g5sda44564465)
NOW:
If you set session.cookie_lifetime to 600 sec and you configure your browser to not accept cookies why I am still getting those when I call a php script with session_start() ?
Try it and see that i mean.........
Thank you!