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
