Help for this page

Select Code to Download


  1. or download this
    sub SetCookies {
    
    ...
            print "Set-Cookie: ", $c, "\n";
        }
    }
    
  2. or download this
     $c = new CGI::Cookie(-name    =>  'foo',
                                     -value   =>  'bar',
    ...
                                     -path    =>  '/cgi-bin/database',
                                     -secure  =>  1
                                    );
    
  3. or download this
    # $Log: cookielib,v $
    # Revision 1.6  2006/04/08 08:34:31  gellyfish
    # Appeared to be a cut and paste error in SetCookies