I am working on a project that involves cookies. Everything works grand in Mozilla 1.1, Netscape 4.8, IE 5 & 5.5 but in IE 6 I get an "Undefined index:" back.
Here is the code for creating the cookies:
<?php
SetCookie("accountkey",$POST['accountkey'],time()+600,"/");
SetCookie("utilityid",$POST['utilityid'],time()+600,"/");
SetCookie("movein",$_POST['movein'],time()+600,"/");
?>
And here is the call for the cookies
<?php
$accountkey=$COOKIE['accountkey'];
$utilityid=$COOKIE['utilityid'];
$moveindate=$_COOKIE['movein'];
?>
One thing to note is that I am testing this on an intranet/local network. I know IE does it's ZONE thing. Could that be part of it? Any help would be GREAT!