py CGI笔记
杨过悔
这个作者很懒,什么都没留下…
展开
-
学习网关前理解网关
http://baike.baidu.com/link?url=Pkr5h8hRkjpNyR3373bK16_-mRYQRv7MB_h9QmL75e1li4unwMus39ehwiEXNDAkr-6NdrznabuiDvuEXFBLHK原创 2015-10-01 13:51:59 · 470 阅读 · 0 评论 -
使用GET提交form
#!D:\ProgramFiles\Python27\python# Import modules for CGI handling import cgi, cgitb # 创建 FieldStorageform = cgi.FieldStorage() # 从字段中获取数据name = form.getvalue('name')age = form.原创 2015-10-01 15:47:42 · 959 阅读 · 0 评论 -
Python CGI与Apache的配置
1. Install PythonYou can get Python from the following: http://python.org/download/. Simply download the Python installer and follow the instructions. Make sure to remember the directory you used转载 2015-10-01 15:39:09 · 454 阅读 · 0 评论 -
Apache HTTP Server2.4安装
1.下载安装后解压到指定目录下找到conf/下的httpd.conf 38行 修改Define SRVROOT值为Apache HTTP Server2.4根目录例如我的是"D:\ProgramFiles\Apache HTTP Server\x86"cmd命令下D:\ProgramFiles\Apache HTTP Server\x86\bin>h原创 2015-10-01 14:50:08 · 418 阅读 · 0 评论 -
py操作cookie
1.cookie可以用来保存一些简单的数据,他是通过设置header来实现的例如'Set-Cookie: raspberrypi="Hello world"; \expires=Wed, 28 Aug 2013 18:30:00 GMT\r\n\r\n'在cookie和content一定要确保有一空行2.py提供了一个import Cookie模块以方便操作cookie原创 2015-10-01 19:13:37 · 652 阅读 · 0 评论