Help for this page

Select Code to Download


  1. or download this
    use strict;
    require WWW::Curl::Easy;
    ...
    my $curl = WWW::Curl::Easy->new;
    
    $curl->setopt(CURLOPT_HEADER,0); # boom
    
  2. or download this
    use strict;
    require WWW::Curl::Easy;
    ...
    my $curl = WWW::Curl::Easy->new;
    
    $curl->setopt(WWW::Curl::Easy::CURLOPT_HEADER,0); # or wherever CURLOP
    +T_HEADER gets declared