test.py

test.py — Python Source, 0Kb

ファイルコンテンツ

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import cgi

req = cgi.FieldStorage()
who = req.getvalue('who', '')
print "Content-Type: text/html; charset=utf-8"
print
if who:
    print """<html>
<head><title>Hello</title></head>
<body>
%s さん、こんにちは!
</body>
</html>
""" % cgi.escape(who)
else:
    print """<html>
<head><title>Input your name</title></head>
<body>
<form method="POST" action="test.py">
お名前をどうぞ
<input type="text" name="who" />
<input type="submit" value="送信" />
</form>
</body>
</html>"""