Help for this page

Select Code to Download


  1. or download this
    my $xml = "<test>post did it go threw</test>";
    my $SendObject = Win32::OLE->new('microsoft.XMLhttp');
    ...
    $SendObject->send($xml);
    my $response = $SendObject->responseText;
    print "<br><br>POST RESPONSE: $response";
    
  2. or download this
    if($ENV{'REQUEST_METHOD'} eq 'POST'){
        my $val = <STDIN>;
        print $val;
    }