> can anyone see anything wrong with this code?  It's causing a blank page
> (with no errors) when i uncomment it..

Where is $q coming from? If its a 'new CGI;' object then you are
probably doing something wrong. The docs for HTTP::Cookie state:

use CGI qw/:standard/;
use CGI::Cookie;

-name    => "proj_num",
                         -value   => $proj_num,
                         -path    => "/",
                         -expires => "+1h",
                         -domain  => ".missouri.edu",
                         -secure  => 0 );


# Create new cookies and send them
$cookie1 = new CGI::Cookie(-name=>'ID',-value=>123456);

print header(-cookie=>[$cookie1]);
_______________________________________________
Perl-Win32-Web mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

Reply via email to