i am trying to put all of my cookies into an array. heres my code
<?
setcookie('failn','fail'); setcookie('goodn','good'); setcookie('han','ha');
$allcookies=explode(' ',$_COOKIE);
print_r($allcookies);
?>
but the page only returns
Array ( [0] => Array )
please help