Parse GET/POST queries into name and value fairs then store into the Q_ENTRY structure.
Q_ENTRY *getpost = qCgiRequestParseQueries(NULL, NULL); printf("%s\n", qEntryGetStr(getpost, "name")); // if you would like to parse only POST queries. Q_ENTRY *post = qCgiRequestParseQueries(NULL, "POST"); printf("%s\n", qEntryGetStr(post, "name")); Definition at line 268 of file qCgiRequest.c.
|