in reply to Re: Re: How do I save the result of POST to a file?
in thread How do I save the result of POST to a file?

Well, you can get form data from STDIN:

my $query = <>;
because all form data, which are sent using method POST, come to the STDIN of handled script.
      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);