# include <stdlib.h>
int main()
{
char *data
long m,n
printf("Content-Type:text/html \r\n\r\n")
printf("<html><head>\n")
printf("<title>hello world </title>\n")
printf("</head>\n")
printf("<body>\n")
printf("<h1>hello world </h1>\n")
data = getenv("QUERY_STRING")
if(sscanf(data,"m=%ld&n=%ld",&m,&n)!=2)
printf("<P >错误!输入数据非法。表单中输入的必须是数字。</p>")
else
printf("<P >%ld和%ld的成绩是:%ld。",m,n,m*n)
printf("</body></html>\n")
return 0
}
js是客户端编程语言html是客户端标记性语言,是所有网页的基础
php、cgi是服务器端脚本
Dreamweaver是一个编辑器,可以编写js、php、html等网页文件
至于要用什么,这个问题问得太笼统