CGI中的get和post解析
程序员文章站
2022-05-09 10:42:31
...
参考:https://www.cnblogs.com/lidabo/p/5756251.html
本文的实例,在前面搭建好的boa服务器上已经得到验证
1.POST和GET
一个CGI程序在于服务器之间的信息传输和数据传输一般通过两种方法,即POST和GET。具体是哪一种方法这需要通过CGI的一个环境变量REQUEST_METHOD判断(具体怎么判断我会在下面详细讲解),在这之前先讲一下URL编码。
1.1 URL编码
虽然在设置表单信息的传输方式时有POST和GET两种方法,但是不管采取哪种方法,浏览器采取的编码方式却是完全相同的。编码规则如下:
□ 变量之间使用“&”分开
□ 变量与其对应值之间使用“=”链接
□ 空格符使用“+”代替
□ 保留的控制字符则使用百分号接相应的十六进制ASCII代替
□ 空格是非法字符
□ 任意不可打印的ASCII 控制字符都为非法字符
□ 某些具有特殊意义的字符也用百分号接相应的十六进制ASCII代替
2. 将index.html 放到/home/root/www下
内容为:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>demo3</title>
</head>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>demo3</title>
</head>
<body>
/* 注意这里的cgi程序名为cgiTest.cgi */
<form name="form1" action="/cgi-bin/cgiTest.cgi" method="get">
<table align="center">
<tr><td align="center" colspan="2"></td></tr>
<tr>
<td align="right">用户名</td>
<td><input type="text" name="Username"></td>
</tr>
<tr>
<td align="right">密 码</td>
<td><input type="password" name="Password"></td>
</tr>
<tr>
<td><input type="submit" value="登 录"></td>
<td><input type="reset" value="取 消"></td>
</tr>
</table>
</form>
</body>
</html>
3. 编写cgi程序
内容为
#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/html\n\n");
printf("The following is query reuslt:<br><br>");
req_method = getenv("REQUEST_METHOD");
input = getcgidata(stdin, req_method);
// 我们获取的input字符串可能像如下的形式
// Username="admin"&Password="aaaaa"
// 其中"Username="和"&Password="都是固定的
// 而"admin"和"aaaaa"都是变化的,也是我们要获取的
// 前面9个字符是UserName=
// 在"UserName="和"&"之间的是我们要取出来的用户名
for ( i = 9; i < (int)strlen(input); i++ )
{
if ( input[i] == '&' )
{
name[j] = '\0';
break;
}
name[j++] = input[i];
}
// 前面9个字符 + "&Password="10个字符 + Username的字符数
// 是我们不要的,故省略掉,不拷贝
for ( i = 19 + strlen(name), j = 0; i < (int)strlen(input); i++ )
{
pass[j++] = input[i];
}
pass[j] = '\0';
printf("Your Username is %s<br>Your Password is %s<br> \n", name, pass);
return 0;
}
char* getcgidata(FILE* fp, char* requestmethod)
{
char* input;
int len;
int size = 1024;
int i = 0;
if (!strcmp(requestmethod, "GET"))
{
input = getenv("QUERY_STRING");
return input;
}
else if (!strcmp(requestmethod, "POST"))
{
len = atoi(getenv("CONTENT_LENGTH"));
input = (char*)malloc(sizeof(char)*(size + 1));
if (len == 0)
{
input[0] = '\0';
return input;
}
while(1)
{
input[i] = (char)fgetc(fp);
if (i == size)
{
input[i+1] = '\0';
return input;
}
--len;
if (feof(fp) || (!(len)))
{
i++;
input[i] = '\0';
return input;
}
i++;
}
}
return NULL;
}
将这个程序用相应的交叉编译器编译成cgiTest.cgi,放到/home/root/www/cgi-bin目录下
4. 登录测试
确保BOA启动后,登录IE
登录页面
登录后显示
上一篇: 参数估计
推荐阅读
-
jquery中get和post的简单实例_jquery
-
微博开发1客户端的http的get和post封装
-
java web学习_浅谈request对象中get和post的差异
-
浅谈IOS中AFNetworking网络请求的get和post步骤
-
Python 使用requests模块发送GET和POST请求的实现代码
-
c#方法中调用参数的值传递方式和引用传递方式以及ref与out的区别深入解析
-
区分ASP.NET中get方法和post方法
-
解析web.xml中在Servlet中获取context-param和init-param内的参数
-
Hibernate中Session.get()方法和load()方法的详细比较
-
Python 使用requests模块发送GET和POST请求的实现代码