in reply to How do I read POST data that is not encoded, and was submitted without a parameter name

The CGI specification (not CGI.pm, mind you. CGI.) states that input to a CGI script comes in on STDIN, so you ought to be able to grab the data from there.

Try this for more information.

  • Comment on Re: How do I read POST data that is not encoded, and was submitted without a parameter name