tags:

views:

490

answers:

1

I am writing a C++ app on FastCGI using libfcgi++. When I do a POST or GET request, is there a library out there that would parse the different fields?

For example for a GET /fastcgi.fcgi?var1=data1&var2=data2 would return something that's easier to access var1 and var2?

Same for a multipart POST request.

+1  A: 

Looks like fastcgi++ might do the trick.

bdonlan