Might be an obvious answer but I can't get my head 'round it. Here's my Cookie Array <?php setcookie("cookie[three]","cookiethree"); setcookie("cookie[two]","cookietwo"); setcookie("cookie[one]","cookieone"); ?> Code (markup): Heres the way to show all values within the Cookie Array <?php // print cookies (after reloading page) if (isset($_COOKIE["cookie"])) { foreach ($_COOKIE["cookie"] as $name => $value) { echo "$name : $value <br />"; } } ?> Code (markup): What I want to do, is to just display the value of a specific key withing the array. I.e. how can I display the value for "cookie[two]"??