请问c怎么提交和接收表单
如题,请问c怎么提交和接收表单,就是一个网页收到另一个网页里输入的内容,请问应该怎么做?我查了半天下了curl结果搞不出libcurl.lib,求指导
#include <stdio.h>
#include<conio.h>
int main(){
printf("Content-type:text/html;<meta charset=utf-8>\n\n");
printf("<!DOCTYPE html>\n\n<html>\n\n<head>\n\n<script>\n\n");
printf("function validateForm() {var x = document.forms[\"myForm\"][\"fname\"].value;");
printf(" if (x == null || x == \"\") {alert(\"需要输入名字。\"); return false;}}");
printf("\n\n</script>\n\n</head>\n\n<body>\n\n");
printf("<form name=\"myForm\" action=\"http://www.baidu.com/\"onsubmit=\"return validateForm()\" method=\"post\">");
printf("名字: <input type=\"text\" name=\"fname\"><input type=\"submit\" value=\"提交\">\n\n</form>\n\n12345\n\n</body>\n\n</html>");
//_getch();
return 0;
}
我只会js的,c的post怎么做,能不能举个例子或者告诉我去哪里看,我百度了好久没弄成,libcurl.lib没编译出来