Help for this page

Select Code to Download


  1. or download this
    use WWW::Curl::Easy;
    my $curl = WWW::Curl::Easy->new;
    ...
    } else {
            print("An error happened: $retcode ".$curl->strerror($retcode)
    +." ".$curl->errbuf."\n");
    }
    
  2. or download this
    
    require WWW::Curl::Easy;
    ...
    } else {
            print("An error happened: $retcode ".$curl->strerror($retcode)
    +." ".$curl->errbuf."\n");
    }