PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Can we use session when the cookie is disabled in the browser,I mean in internet explorer when we disable the cookie can we use session to pass the value from one page to other.
I don't know for sure, but i'm pretty sure you can. Sessions are dealt with server side, with the information being stored in a folder by PHP. As far as I am aware, cookies have nothing to do with sessions.
in order for the sessions to work without cookies, the server, or you can add the session id to the url being passed around. Normally, the server should handle this on it's own... given the default settings.