1
d228195b9990e8716d7559ae6c9fea1c
Array ( [pass] => d228195b9990e8716d7559ae6c9fea1c )
returns from the code :
<?=
print $_COOKIE[user];
print "<BR>" ;
print $_COOKIE[pass];
print "<BR>";
print_r($_COOKIE);
?>
thats reading the cookie; to set the cookie , i have
setcookie ("user", $usersuser, $time+3200);
setcookie ("pass", md5($_SERVER['PHP_AUTH_PW']), $time+3200);
So the only thing that comes back after its finished being read is the password stuff, but the username (which is set and checked against a database and proves successful) isnt passed along to the cookie, either that or it isnt being read from the cookie, and according to the print_r , the only thing being pulled out of the cookie as far as data goes, is the pass variable, but NOT the user, which i need as well... Any suggestions?