> also, cgi parameters are normally not passed in argv[], but in the environment > (for GET parameters), or on stdin (for POST, which mathod doesn't seem to > support anyway).
This is incorect. Any data that comes after the request in a POST request is passed straight through to the CGI script via stdin. Cheers Michiel
