Page 1 of 1

Can we use session when the cookie is disabled in the browse

Posted: Mon May 24, 2004 7:43 am
by softsolvers
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.

Posted: Mon May 24, 2004 7:57 am
by mendingo
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.

Posted: Mon May 24, 2004 8:27 am
by feyd
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.

Posted: Mon May 24, 2004 9:01 am
by d3ad1ysp0rk
He means test to see if cookies are enabled, and if they aren't, use sessions instead.