I am using this Code
$ckName = 'Location';
$ckValue = '';
setcookie($ckName, $ckValue, time() + (86400 * 90), "/");
if(!isset($_COOKIE[$ckName])) {
Do Stuff set value of Country
$ckValue = $country;
setcookie($ckName, $ckValue, time() + (86400 * 90), "/");
}
else {
$country = $_COOKIE[$ckName];
echo 'Cookie Set';
}
When I reload the ebpage three or four times I still don't get Cookie Set echoed. I can't see my cookie either in the broswer.