form.html
:
<form action="p.py" method="post">
<input type="text" id="id_text" name="name_text" />
<input type="submit" id="id_submit" name="name_submit" />
</form>
p.py
:
#!/usr/bin/python
#what to write here...
这两个文件都放入了/var/www/
,现在来自http://example.com/form.html,如果我单击提交按钮,我会执行p.py
吗?如何获取文本框的值?
它是安装在计算机上的 apache/httpd 网络服务器。