用C++编写getParameter()
# include <STDIO.H>
# include <STDLIB.H>
char* getParameter()
{
int n=0;
char* s;
if(getenv("CONTENT_LENGTH"))
n=atoi(getenv("CONTENT_LENGTH"));
if(n!=0){
//POST方法
fgets(s,n,stdin);
}else{
//GET方法
if(getenv("QUERY_STRING"))
s=getenv("QUERY_STRING");
}
return s;
}
main()
{
printf("Content-type: text/html; charset=iso-8859-1\n\n");
char* s=getParameter();
printf("%s\n",s);
}