Quote:
Originally posted by DKCK
Here is my problem in a nutshell. I'm am trying to make my site work with both users who allow cookies and those who don't. When I go to check for cookies, I try to pass a session variable back to my script. However those that don't have cookies for some reason don't get the session variable either. Any ideas why this happens?
Thats because Session are implemented using cookies, the session id is passed at every request in a cookie so if one has cookie disabled then you wont be able to use session object.