Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use CGI;
    ...
    print "Cookie Set<br>";
    
    print $q->end_html;
    
  2. or download this
    #!/usr/bin/perl -w
    use CGI;
    ...
    print "Cookie Value: ", (join " -- ", see_cookie($q->cookie('Test')) )
    +, "<br>";
    
    print $q->end_html;