I'm new to C++ and cgicc, and I want to know if there is an easy way to parse the get parameters to the cgi script? ?action=yes&function=no
into an array or something like that?
views:
51answers:
2
A:
I'd recommend having a look at boost regex library. http://www.boost.org/doc/libs/release/libs/regex/
shuttle87
2010-06-04 07:26:14
Are there any available functions or libraries which I can use immediately?
TheOnly92
2010-06-04 07:30:59
@TheOnly92: What do you mean by "use immediately?
shuttle87
2010-06-14 10:45:40
Well, any libraries that I can include in my source file and just use the function...
TheOnly92
2010-06-24 10:47:20
A:
read_cgi_input(&items);
http://www.eekim.com/software/cgihtml/index.html
Tommy
2010-06-23 19:21:31