使用Python CGI打印新页面

时间:2012-10-25 02:40:49

标签: python html cgi

我正在使用/学习Python来完成CGI任务。基本上我们必须提供一些表格,然后根据用户输入,呈现不同的形式等。

到目前为止,这是我的脚本代码:

import cgi
import cgitb
cgitb.enable()  # for troubleshooting
print ("Content-type: text/html\n\n")
form1 = open("html/assg5form1.html")
form2 = open("html/assg5form2.html")
form3 = open("html/assg5form3.html")
form4 = open("html/assg5form4.html")
form5 = open("html/assg5form5.html")
formstring = form1.read()
print formstring

我遇到的问题是在提出第一个表单之后,我不知道如何处理用户提供的输入。我通常会在表单上附加一个操作并触发另一个脚本,但是我们需要在一个文件中执行所有脚本操作。如何清除我展示的表格并展示另一张表格?

0 个答案:

没有答案