Thanks a lot. That is what I need to encapsulate our own C program in an apache 2 filter. Thanks to all. My request is answered.
Pascal MILON ----- Original Message ----- From: "Nick Kew" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "Pascal MILON" <[EMAIL PROTECTED]> Sent: Monday, August 18, 2003 7:08 PM Subject: Re: Need example of filter code for method POST data On Mon, 18 Aug 2003, Pascal MILON wrote: > Is anybody have an example of a code that read the post_data in a filter, just the > minimum of the prototyped functions and the good > functions to call to read the args in POST request ? Take a look at <URL:http://www.webthing.com/software/mod_upload/> which serves to parse and decode multipart forms. If you want to deal with URLencoded forms in a filter, that's easier: just take some decoding code (e.g. from a CGI library, or write your own) and put it in a filter. -- Nick Kew In urgent need of paying work - see http://www.webthing.com/~nick/cv.html
