Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

請問誰會ㄋ

0 views
Skip to first unread message

titan

unread,
May 1, 2001, 11:12:55 PM5/1/01
to
請問這裡有沒有人討論
c語言在 linux 的 gcc下編譯 好之後
怎麼取得由網頁上輸入ㄉ資料呢?

範例
------------------------------------INPUT.HTM
<html>
<body>
<form method=post action=./cgi-bin/input.cgi>
<input type=text name='id' size=10>
<input type=submit value='決定'><input type=reset value='重填'>
</form>
</body>

-----------------------------------------INPUT.C
#include <stdio.h>
#include <stdlib.h>

int main()
{
typedef struct {
char id[10];
int year;
} USER;
USER user;

printf("Content-type: text/html\n\n");
printf("<html>\n");

printf("%s=%d",user.id,user.year);

printf("</html>");
return(0);
}


0 new messages