As the subject says, I posted this bug report on the official php bugs
page http://bugs.php.net/bug.php?id=26950 and have now changed my
storing of user information to use cookies as such:

setcookie("cookie_auth_memberID", $row['id'], time()+604800,'/');
setcookie("cookie_auth_Username", $frmUsername, time()+604800,'/');
setcookie("cookie_auth_Password", $frmPassword, time()+604800,'/');
setcookie("cookie_auth_Group", $row['membergroup'], time()+604800,'/');

However anyway, on displaying my PHPSESSIONID in Internet Explorer 6, I
am now noticing that on the refresh of any page (by clicking on any
internal site link) the PHPSESSIONID is changing!???? This doesn't
happen in Mozilla or Opera, any ideas folks?

Top of each page looks like such:

session_save_path("/home/tazonlin/webs/www.planet-tolkien.com/sessions")
; 
session_start();

Regards,
 
Tarrant Costelloe

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to