Help for this page

Select Code to Download


  1. or download this
    $fp_request = new HTTP::Request('POST', $url, [ $header, [$content]]);
    
  2. or download this
    use LWP::UserAgent;
    use strict;
    ...
    my $req = new HTTP::Request('POST', $url, $header, $body );
    
    print $req->as_string