i have a major problem. i'm using php 4 (IIS 4) and i am trying to send some cookies to the client's browsers but they work only on some of them. here's the code
header("Set-Cookie: sid=$ss; expires=$date GMT"); where $ss is the value for my cookie i tried all the combinations of setcookie but still won't work on some browsers (Internet explorer 5 some versions). please help
Vlad
Is there a reason you're not using the PHP setcookie function (rather than manually setting the cookie via a header)?
Dave
=========================================== http://badblue.com/helpphp.htm Free small footprint web server for Windows
$lifeofcookie = mktime(12, 50, 30, 6, 20, 2010); setcookie("coockie","$coockie","$lifeofcookie","");
try this should work!
the same reason (i read here on phpbuildeer that this might help but it didn't)
now it works.. tnks alot