关键是要输出Content-type和两个\r\n
#include <stdio.h>
int main(){
printf("Content-type: text/html\r\n\r\n")
printf("hello,world!")
return 0
}
编译改名就可以了
如果需要表单,请参考
http://www.cs.tut.fi/~jkorpela/forms/cgic.html
欢迎分享,转载请注明来源:内存溢出
关键是要输出Content-type和两个\r\n
#include <stdio.h>
int main(){
printf("Content-type: text/html\r\n\r\n")
printf("hello,world!")
return 0
}
编译改名就可以了
如果需要表单,请参考
http://www.cs.tut.fi/~jkorpela/forms/cgic.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)