Re: PHP - Sessions Not Registering - Internet Explorer
I'm quite sure Internet Explorer is not accepting cookies... As this is what you already mentioned.
Sessions are not only server-based, setting a session has to happen before any output since it sends a header, more specificly a cookie... Session-data is stored server-side, but the server has to know what session belongs to which user. When a session is created, it is stored under a session-key and this key is also send to the user as a cookie. The user sends this cookie then with the request for any further page on that domain. This allows the server to know what session data he has to use.
If the client doesn't accept cookies, the server will still store the data, but it cannot be used any more, as the client didn't remember his session key.
In short: sessions require cookies to work.
- Marshian
Real programmers don't document their code - if it was hard to write, it should be hard to understand.