Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    use CGI;
    $q = new CGI;
    ...
    $cookie_in = $q->cookie("wolves"); 
    
    print $cookie_in;
    
  2. or download this
    use CGI;
    $q = new CGI;
    $cookie_in = $q->cookie("wolves"); 
    print $cookie_in;