谁能在boa服务器下给个cgi的简单例子

谁能在boa服务器下给个cgi的简单例子,第1张

#include <stdio.h>

#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。 只谈网页原理。

从data.txt读入温度湿度等数据。

用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预先设定的主页。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/495610.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-06-15
下一篇2023-06-15

发表评论

登录后才能评论

评论列表(0条)

    保存