Почему на перле не работает вот это:#!/usr/bin/perl
print "Content-type: text/html\n";
print "Set-cookie: username=aaa13; path=/;\n\n";
$cookie = $ENV{'HTTP_COOKIE'};
print $cookie;
print "</html>";
Зато работает вот это:
print "Content-type: text/html\n";
print "SetCookie: test=1;path=/'expires=Mon, 01-Oct-2001 00:00:00 GMT\n\n";
Видимо просто не указан срок "жизни" Кука.