Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    ...
    my $content = post($url, $Data);
    
    print $content;
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    open (FH, ">binaryoutput");
    print FH $q->param() if ($q->param());
    close(FH);