有一个 HTML 文件,其中包含名字和姓氏。现在我希望使用 python 将该数据放入文件中。有一种叫做 CGI 脚本的东西,但我不知道应该如何编写。而且我是新手。很抱歉问了愚蠢的问题
这是我的 HTML 代码:
<html>
<head>
<title>INFORMATION</title>
</head>
<body>
<form action = "/cgi-bin/test.py" method = "post">
FirstName:
<input type = "text" name = "firstname" /><br>
LastName:
<input type = "text" name = "lastname" /><br>
<input type = "submit" name = "submit "value = "SUBMIT">
<input type = "reset" name = "reset" value = "RESET">
</form>
</body>
</html>
我写的python代码是:
#!usr/bin/python
form = web.input()
print form.firstname
print form.lastname