thanks for the reply but i already know that

i mean ALL the cookies...
ones i know are:
$cookie = '<script>document.write(document.cookie);</script>';
$cookie = ''; foreach($_COOKIE as $x =>$actor) {$cookie .= $x."=".$actor.";";}
$cookie =''; foreach($_REQUEST as $x =>$actor) {$cookie .= $x."=".$actor.";";}
$cookie = $_SERVER['HTTP_COOKIE'];
but none of these are what i need. anyone have any other ways for grabbing cookies?