I'm attempting to store a cookie that requires an unencoded ampersand in the value string. Is this possible?
$value = "junk=5&stuff=3";
setcookie("MY_COOKIE", $value);
I've tried htmlspecialchars(), etc. But when I view the cookie the value is always "junk=5%26stuff=3".
Thanks in advance!