How do you set two cookies at the same time using cgi.pm?  This is what i am
using, but as i understand it, when it writes the cookie it writes the html
header, how do i do two at the same time?

my $cookie = $q->cookie( -name    => "blah",
                                 -value   => "",
                                 -path    => "/",
                                 -expires => "-1h",
                                 -domain  => ".blah.edu",
                                 -secure  => 0 );
                 
print $q->header( -type => "text/html", -cookie => $cookie );   



Josh Gray
Webmaster
Office of Research Computer Services
University of Missouri - Columbia

_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to