Hello I'm using PHP and cookies to avoid that a simple modification of the get line on the location bar (change the sesion and the login vars) alow a user to take another sesion.
The problem is when I send cookies IE do not set it (in IE for the Mac I read the list of cookies they are simple not there) Netscape from ver 4.7 to 6.1 do it fine in Windows, Mac and Linux.
A note : Opera is not capturing the cookies neiter (sorry I speak spanish).
The control script read the cookies like this:
$GalletaGalleta=$HTTP_COOKIE_VARS["Galleta_Sin"];
$GalletaLogin=$HTTP_COOKIE_VARS["Galleta_Con"];
and set them by using :
setcookie("Galleta_Con",$VAR_login,"","/");
setcookie("Galleta_Sin",$NuevaGalleta,"","/");
that set time expiration to the end of the sesion, ofcourse I try seting and expiration time for the cookies, that do not work.
Thank you