接收表单数据的托管网站的服务器上运行脚本

时间:2019-05-15 08:34:42

标签: python html web apache2 cgi

因此,基本上,我是通过apache2在树莓派上托管一个基本网站。我想做的是,当用户通过html表单提交表单数据时,我希望python脚本使用发送到服务器的数据来运行和更改服务器上的文件。

我尝试使用CGI,但是这似乎只是将数据发送回发送表单数据的浏览器。

任何帮助将不胜感激。

现有的CGI脚本

# Import modules for CGI handling 
import cgi, cgitb 

# Create instance of FieldStorage 
form = cgi.FieldStorage() 

# Get data from fields
first_name = form.getvalue('first_name')
last_name  = form.getvalue('last_name')

print "Content-type:text/html\r\n\r\n"
print "<html>"
print "<head>"
print "<title>Hello - Second CGI Program</title>"
print "</head>"
print "<body>"
print "<h2>Hello %s %s</h2>" % (first_name, last_name)
print "</body>"
print "</html>"

HTML脚本

<html>
<body>

<form action = "/cgi-bin/hello_get.py" method = "post">
First Name: <input type = "text" name = "first_name"><br />
Last Name: <input type = "text" name = "last_name" />

<input type = "submit" value = "Submit" />
</form>
</body>

</html>

没有错误消息,我只是没有得到想要的结果。 CGI脚本将一个页面返回到浏览器,其中包含通过表单发送的数据。

0 个答案:

没有答案