Help for this page

Select Code to Download


  1. or download this
    print "abc\n";
    print "def\n";
    ...
    ghi
    EOD
    
  2. or download this
    use CGI qw(:cgi);
    
    ...
    
      print $q->redirect(
                       -url    => $_[0]                  );
    
  3. or download this
    &get_data (\$current_date, \$remote_host, 
               \$remote_addr, \$server_name);
    ...
        $$remote_addr = $ENV{'REMOTE_ADDR'};
        $$server_name = $ENV{'SERVER_NAME'};
    }
    
  4. or download this
    ($current_date, $remote_host, 
      $remote_addr, $server_name) = get_data();
    ...
                 $ENV{'REMOTE_HOST'}, $ENV{'REMOTE_ADDR'},
                 $ENV{'SERVER_NAME'};
    }