#include <stdlib.h>
#include <string.h>
char* getcgidata(FILE* fp, char* requestmethod)
int main()
{
char *input
char *req_method
char name[64]
char pass[64]
int i = 0
int j = 0
// printf("Content-type: text/plaincharset=iso-8859-1\n\n")
printf("Content-type: text/html\n\n")
printf("The following is query reuslt:<br><br>")
}
没用过boa。 只谈网页原理。用printf()输出 HTML 文件。
#define LF 10
#define CR 13
int wendu,shidu
char shijian[20]
FILE *fin
// 打开data.txt,读入 wendu,shidu,shijian,关文件
// 下来输出
printf("<HTML>%c",LF)
printf("<HEAD><TITLE>web界面</TITLE></HEAD>%c",LF)
printf("<meta http-equiv=\"Content-Type\"
content=\"text/html\"charset=\"gb2312\" />)
printf("<BODY>%c",LF)
printf("<H2>温度:%d 湿度:%d 时间:%s</H2>%c",LF,wendu,shidu,shijian)
printf("<HR></BODY></HTML>%c",LF)
===============================================
网上留言获取,变量名字与网页定义有关。
char *cl
char manydata[10240]
void getword(char *word, char *line, char stop) {
int x = 0,y
for(x=0((line[x]) &&(line[x] != stop))x++)
word[x] = line[x]
word[x] = '\0'
if(line[x]) ++x
y=0
while(line[y++] = line[x++])
}
void unescape_url(char *url) {
register int x,y
for(x=0,y=0url[y]++x,++y) {
if((url[x] = url[y]) == '%') {
url[x] = x2c(&url[y+1])
y+=2
}
}
url[x] = '\0'
}
void plustospace(char *str) {
register int x
for(x=0str[x]x++) if(str[x] == '+') str[x] = ' '
}
返回信息长度:
char_l = atoi(getenv("CONTENT_LENGTH"))
cl = &manydata[0]
分离变量名与值(即内容):
for (i=0i <char_l i++) {
*( cl + i) = (char)fgetc(stdin)
}
*( cl + char_l) = '\0'
查找需要的变量名与值:
for(x=0cl[0] != '\0'x++) {
m=x
getword(w,cl,'=')
plustospace(w)
unescape_url(w)
if( strcmp(w,"name") == 0) {
getword(w,cl,'&')
plustospace(w)
unescape_url(w)
strcpy(name,w)
}
。。。。
}
---------------------------------
启动web服务执行./boa
出错:unable to dup2 the error log: Bad file descriptor
修改log.c
注释掉
if (dup2(error_log, STDERR_FILENO) == -1) {
DIE("unable to dup2 the error log")
}
过后要重新编译。
make clean
make
即可启动web服务
在firefox浏览器中输入虚拟机的IP地址,即可进入women预先设定的主页。
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)