Help for this page

Select Code to Download


  1. or download this
    my $cookie = $q->cookie(    -name => "cart_id",
                        -value => 12345,
                        -domain => ".oreilly.com",
    ...
                        -path => "/cgi",
                        -secure => 1 );
    print "Set-Cookie: $cookie\n";
    
  2. or download this
    print "Set-Cookie: cart_id=12345; domain=".oreilly.com"; path=/cgi; ex
    +pires=+1d; secure\n";