网站建设| 数据库类| 图形图象| 程序设计| 现代办公| 操作系统| 考试认证| 网络技术| 软件工程| 电脑相关| 文学作品
网站开发| 网页制作| 操作系统| 图象图形| 考试认证| 数据库类| 程序设计| 硬件技术| 现代办公| 网络技术| 笑话频道
 
您的位置: 电脑书库首页-> 电脑文摘-> 网站开发-> CGI/PERL-> 深入研究表单提交方式:GET/POST

深入研究表单提交方式:GET/POST
作者:佚名 来源:InterNet 加入时间:2005-3-29
相关文章
  • 用Perl制作页面计数器
  • 用Perl语句来代替常用的操作系统命令
  • 用 perl 实现文件上传
  • perl 域名查询程序
  • 一个支持HTTP续传下载的PERL程序
  • Perl的经典用法
  • Perl 程序的属性祥解
  • perl中的日期处理
  • perl在win32平台上直接操作打印机
  • Perl用于实现遗传算法
  • 相关书籍:
  • PERL 编程24学时教程
  • Perl Template Toolkit
  • Perl 24 小时自学通
  • CGI-Perl实例起步
  • 本文平台:Windows 2000 Professional + Apache 1.3.17 + Perl 5.6.1 + Internet Explorer 5.00.2920.0000

      大家知道目前表单提交的方式有GET和POST。我在这里不多说什么,给大家看一个以GET方式提交的表单的请求:

    GET /cgi-bin/tech/method.cgi?GET=GET HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*
    Referer: http://localhost//other.html
    Accept-Language: zh-cn
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    Host: localhost:8080
    Connection: Keep-Alive

      这个请求是我们通过这个HTML代码发出的:

    <form action="http://localhost:8080/cgi-bin/tech/method.cgi" method="GET">
    <input type="text" size="10" value="GET" name="GET">
    <input type=submit value="GET方式">
    </form>

      这个请求已经超出了我们研究的范围,我们只研究其中的第一行。其中,第一个"GET"说出了提交的方式,是以GET方式提交的;中间的就是提交给服务器上哪个程序,前面一部分"/cgi-bin/tech/method.cgi"就是我们HTML的form中action的内容,而后面的"GET=GET"就是HTML的form中,input的内容:我们发现IE已经把这个表单的内容转换成特定格式了。在Perl中,通过$GET=$ENV{'QUERY_STRING'}获得以GET发送的数据。

      我们再看一个以POST方式提交的表单的请求:

    POST /cgi-bin/tech/method.cgi HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-
    powerpoint, application/vnd.ms-excel, application/msword, */*
    Referer: http://localhost//other.html
    Accept-Language: zh-cn
    Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    Host: localhost:8080
    Content-Length: 9
    Connection: Keep-Alive

    POST=POST

      同样给出HTML:

    <form action="http://localhost:8080/cgi-bin/tech/method.cgi" method="POST">
    <input type="text" size="10" value="POST" name="POST">
    <input type=submit value="POST方式">
    </form>

      我们发现其中的数据跑到了最下面。在Perl中,通过read(STDIN,$POST,$ENV{'CONTENT_LENGTH'})获得以POST发送的数据。我记得GET发送数据最多只能1024字节,而POST好像很大很大!

      思考:如果我有这么一段HTML代码,它将会出现什么问题呢?

    <form action="http://localhost:8080/cgi-bin/tech/method.cgi?GET=GET" method="POST">
    <input type="text" size="10" value="POST" name="POST">
    <input type=submit value="GET/POST方式">
    </form>

      这个代码在很多程序上可能用到过,但是大多数人不会好好的想一想,究竟哪些内容是以GET发送的,哪些内容是以POST发送的。我们看看它的请求是什么:

    POST /cgi-bin/tech/method.cgi?GET=GET HTTP/1.1
    Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-
    powerpoint, application/vnd.ms-excel, application/msword, */*
    Referer: http://localhost//other.html
    Accept-Language: zh-cn
    Content-Type: application/x-www-form-urlencoded
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
    Host: localhost:8080
    Content-Length: 9
    Connection: Keep-Alive

    POST=POST

      哈!原来是以POST发送的。但是,你一定发现了有一部分数据放在了第一行,就是和GET的情况一样的。其实这个例子很典型,是POST和GET混发!
       不相信你在Perl中,用read(STDIN,$POST,$ENV{'CONTENT_LENGTH'})和$GET=$ENV{'QUERY_STRING'}看看,到底哪个里面有"GET=GET"这个数据。

      我给大家提供设备,大家自己去研究研究:

    HTML部分:  

    <html>
    <head>
    <title>Get-Post</title>
    </head>

    <body>
    <form action="/cgi-bin/tech/method.cgi" method="GET">
    <input type="text" size="10" value="GET" name="GET">
    <input type=submit value="GET方式">
    </form>
    <form action="/cgi-bin/tech/method.cgi" method="POST">
    <input type="text" size="10" value="POST" name="POST">
    <input type=submit value="POST方式">
    </form>
    <form action="/cgi-bin/tech/method.cgi?GET=GET" method="POST">
    <input type="text" size="10" value="POST" name="POST">
    <input type=submit value="GET/POST方式">
    </form>
    <form action="/cgi-bin/tech/method.cgi?name=Hackfan&age=16&email=hackfan@163.net" method="POST">
    <input type="text" size="10" value="Suzhou" name="address">
    <input type="text" size="10" value="msger.net" name="homepage">
    <input type="text" size="10" value="106814" name="qq">
    <input type=submit value="复杂GET/POST方式">
    </form>
    </body>
    </html>

    Perl部分:

    #!c:\perl\bin\perl.exe

    $|=1;

    print "Content-type:text/html\n\n";

    print "发送方式:$ENV{'REQUEST_METHOD'}<br>\n";
    if(read(STDIN,$POST,$ENV{'CONTENT_LENGTH'})){
    print "POST得到的数据:$POST<br>\n";
    }
    if($GET=$ENV{'QUERY_STRING'}){
    print "GET得到的数据:$GET<br>\n";
    }

    $METHOD="POST";

    for($i=0;$i<=1;$i++){
    foreach(split(/&/,$$METHOD)){
    $_=~s/\+//g;
    ($name,$value)=split(/=/,$_);
    $name=~s/%([a-fA-f0-9][a-fA-f0-9])/pack("C",hex($1))/eg;
    $value=~s/%([a-fA-f0-9][a-fA-f0-9])/pack("C",hex($1))/eg;
    $$METHOD{$name}=$value;
    }
    $METHOD="GET";
    }

    $METHOD="POST";

    for($i=0;$i<=1;$i++){
    print "Hash形式的$METHOD数据遍历:<br>\n";
    foreach(keys %{$METHOD}){
    print "\$".$METHOD."{".$_."}=$$METHOD{$_}<br>\n";
    }
    print "<br>\n";
    $METHOD="GET";
    }

    exit;

    ####代码结束####

      好了,我要说的是,搞这个研究究竟有什么意义呢?
       意义是:让你知道,用户提交的数据哪些是用POST方式,哪些使用GET方式的!
       其实我上面那段Perl代码已经包括了很多的技术。你通过阅读就可以知道%GET里面放的是用GET方式提交的,%POST同理!

      如果你对我编写的Perl代码感兴趣,欢迎切磋:QQ:106814。至于我如何获得IE发送来的请求的,我要说我是用Perl编的一个Server监听8080端口,我是不是像欧姆一样搞研究大多东西都自己编写(当然,让我编写一个操作系统就有点难度了,不过WebServer凑合)?开玩笑呢!

    QQ:106814
    Email:hackfan@163.com
    Personal Page:http://www.msger.net/hackfan


    [文章录入员:nancy]

    相关文章
  • 用Perl制作页面计数器
  • 用Perl语句来代替常用的操作系统命令
  • 用 perl 实现文件上传
  • perl 域名查询程序
  • 一个支持HTTP续传下载的PERL程序
  • Perl的经典用法
  • Perl 程序的属性祥解
  • perl中的日期处理
  • perl在win32平台上直接操作打印机
  • Perl用于实现遗传算法
  • 相关书籍:
  • PERL 编程24学时教程
  • Perl Template Toolkit
  • Perl 24 小时自学通
  • CGI-Perl实例起步
  • 本站推荐内容

    近期主机类热搜关键词:
    美国服务器 美国服务器租用 海外服务器租用 国外服务器租用

    CGI/PERL
    ASP/ASP.NET
    PHP技术
    JSP技术
    XML技术
    CGI/PERL
    WEB服务器
    WordPress专题
    其它
    电脑教程阅读排行
    ·perl中的日期处理
    ·深入研究表单提交方式:GET/P...
    ·如何利用Perl开发Intern...
    ·CGI应用程序开发基础
    ·本地调试PERL CGI程序
    ·PERL与MySQL(DBI接口...
    ·PerlScript编写ASP
    ·CGI编程--Perl的安装配置
    ·Perl用于实现遗传算法
    ·ASP、CGI、ISAPI、OD...