> 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?
>

The only thing i have experienced is if you are calling session_start
twice ?



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

Reply via email to