Forum Moderators: coopster
Currently my php.ini file is session.use_cookies = On and I need to maintain session data accross pages. If I was to turn this off so that clients did not receive a cookie from my site would the session data still be saved, only this time on the server "/tmp" instead of a cookie or do I NEED to have a cookie set.
afaik session data is always saved on the server and not in a cookie.
the only reason for using a cookie is to store the SESSION ID. if cookies are not used then the SESSION ID is appended to each url - resulting in rather unsightly urls such as /page.php?sessionid=s5fd4rithfkreuiiehidh5764856r7tyr654
hth
I have some people which cannot login to their account because their cookie support has been turned off. My login uses sessions to track throughout the login as well. They login ok, but when they click on a link in the login section they return back to the login screen.