i have an application that uses CGI and sets the cookie values as a hashref. im then attempting to retreive the values with Apache::Cookie with:
$cookies = Apache::Cookie->fetch;
$ccokies is a hashref so i should be able to get the individual values with:
$cookies->{uid};
right? however, this doesn't appear to work.
