I have tried without success setting cookies using Perl CGI.
My code looks like this:
$qry = new CGI
$cookie = $qry->cookie(-name=>'SERVER_COOKIE',
-value=>'USER_NAME',
-path=>'/'),
$qry->header(-cookie=>$cookie)
The page does not throw any error, but no cookie gets set!
I am using Firefox 3.5.5 with the add-on to view cookies.
What am i doing wrong?
Gath