Hi I have session problem with ie6. I have this code: $sessionid = session_id(); echo $sessionid; if I press refresh, sessionid is changed. How can I prevent this? Regards, Zoreli
This isn't an IE problem. $sessionid = session_id(); Is creating a new session because there isn't a session before. Try adding session_start() before that. Peace,
Sorry for bumping this thread,but I still can't solve this session_start(); $sessionid = session_id(); echo $sessionid; In IE7 and FF or Opera, on refresh - sessionID is not changed. In IE6 the very same code, on refresh, show different number. Anyone can help with this? Thanks, Zoreli