Help for this page

Select Code to Download


  1. or download this
    use CGI::Carp qw(set_die_handler);
    BEGIN {
    ...
        }
        set_die_handler(\&handle_errors);
    }
    
  2. or download this
    [Wed Oct  5 23:53:36 2021] test.cgi: Died at /web/test.cgi line 15.
    
  3. or download this
    use LWP::UserAgent;
    my $ua = LWP::UserAgent->new;
    ...
    else {
        print $response->status_line;
    }