use Apache::Cookie;
$ac = Apache::Cookie->new($r);
%all_cookies = $ac->parse( );
Now each element of that hash is an object representing a single
cookie:
$one_cookie = $all_cookies{COOKIE_NAME};
Interrogate the object to learn about that cookie's values:
$one_cookie->value( ) $one_cookie->name( )
$one_cookie->domain( ) $one_cookie->path( )
$one_cookie->expires( ) $one_cookie->secure( )