ok I got the cooking to set, before it wasnt now it is, but I cannot get any data from the cookie
any ideas?
this is all im doing
//Set Cookies
setcookie ("sb[0]", $uname, time()+7200);
setcookie ("sb[1]", $upass, time()+7200);
then to retrieve them I tried these both
echo $sb[0];
echo $_COOKIE["sb[0]"];
nothing happends I get a blank screen
Im running windows 2k w/ IIS and PHP 4.3
if I do this
print_r($HTTP_COOKIE_VARS);
I get this
Array ( [sb] => Array ( [0] => test [1] => 1234 ) )