16 lines
484 B
C++
16 lines
484 B
C++
|
#include <stdio.h>
|
|||
|
#include <cgic.h>
|
|||
|
|
|||
|
int cgiMain() {
|
|||
|
char paramValue[256]; // 用于存储参数值的缓冲区
|
|||
|
if (cgiFormString("paramName", paramValue, sizeof(paramValue)) == cgiFormSuccess) {
|
|||
|
// 成功获取参数,paramValue现在包含参数的值
|
|||
|
// 在这里处理参数值...
|
|||
|
} else {
|
|||
|
// 获取参数失败,可能是因为参数不存在或发生了错误
|
|||
|
// 在这里处理错误情况...
|
|||
|
}
|
|||
|
|
|||
|
return 0;
|
|||
|
}
|