《cgic编程(三) — 》
1.获取请求参数
如果不使用cgic库,要获取请求参数:
用getenv从环境变量中获取 QueryString:char *queryString=getenv("QUERY_STRING");
char *qs = getenv("QUERY_STRING");
sscanf函数,可以从字符串中查找字符。
使用cgic库中的cgiFormString:
char pwd[256]={0}; cgiFormString("password", pwd, sizeof(pwd));
2.重定位网页
void cgiHeaderLocation(char *redirectUrl) 重定向到redirectUrl指定的URL。
cgiHeaderLocation("http://www.baidu.com");就会直接跳转到百度的网页上。