agalkin@audible .com wrote:[color=blue]
> Does anyone know any C/C++ source code for parsing CGI input string
> into name/value pairs? The only condition is not using any templates.[/color]
Have you tried the web? What about 'comp.infosyste ms.www.authorin g.cgi'?
CGI is not part of C++ language definition and as such is off-topic here.
V
--
Please remove capital As from my address when replying by mail
agalkin@audible .com wrote:
[color=blue]
> Does anyone know any C/C++ source code for parsing CGI input string
> into name/value pairs? The only condition is not using any templates.[/color]
There are a number of libraries using C or C++ for cgi, Google can
help. It's not too hard to write your own if you want, and it can be
done using 100% ISO standard methods, but there's plenty of prior art
out there.
On 16 Feb 2006 18:27:27 -0800, agalkin@audible .com wrote:[color=blue]
>Does anyone know any C/C++ source code for parsing CGI input string
>into name/value pairs? The only condition is not using any templates.[/color]
Maybe one of the following libraries contains what you want:
CPPSERV is a web application server/servlet container that provides API similar to Java Servlets to C++ programmers, along with CSP (C++ Server Pages) implementation
Comment