Is there a way to get the contatenated values of a cookie into an array? I want...
setcookie("name", $valone . $valtwo . $valthree, 3600);
$getit = $HTTP_COOKIE_VARS["name"];
...to turn into...
$array[] = "value of valone";
$array[] = "value of valtwo";
$array[] = "value of valthree";
...Is this possible???