in reply to Re: Re: Cookie question ....
in thread Cookie question ....
#!/usr/bin/perl -w use strict; use CGI::Carp qw(fatalsToBrowser); use CGI qw(:standard); my $yySetCookies1 = cookie( -name => "test", -value => "test", -path => "/", -expires => "" ); print header( -status=>"200 OK", -cookie=> $yySetCookies1 );
-caedes
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Cookie question ....
by Anonymous Monk on Feb 27, 2003 at 09:19 UTC |