On Thu, Oct 23, 2008 at 23:17, Subra Aswathanarayanan <[EMAIL PROTECTED]> wrote: > Hi, > In my module I want to url decode the query string before I process it. Does > apache provide any such helper functions?
You may try ap_unescape_url or ap_unescape_url_keep2f declared in httpd.h and defined in server/util.c. They'll only replace %xy with the corresponding char. They will not replace '+' with ' ' (blank) for example. -- S
