If cookies are enabled, PHP will use cookies for that and this PHPSESSID
is the default name for the cookie responsible for handling sessions. You can change that name changing session.name
in your php.ini
file, but that shouldn’t be a concern for you.
This question at stackoverflow has additional info.
Feel free to ask other questions. If you don’t have any, please, mark your topic as “resolved” ??
]]>thanks for your reply. I don’t want to change the name of the cookie but turn it off. Can you help me with that?
]]>session.use_cookies = 0
into your php.ini
file.
]]>
session.use_cookies = 1
to session.use_cookies = 0
in the php.ini
file but the PHPSESSID
cookie is sill there ??has anyone an idea how I can get rid of this cookie?
Please help!
]]>