123456789101112131415161718192021222324 |
- #!/usr/bin/env python
- import cgi
- form = cgi.FieldStorage()
- name = form.getvalue('name', 'world')
- print("""Content-type: text/html
- <html>
- <head>
- <title>Greeting Page</title>
- </head>
- <body>
- <h1>Hello, %s!</h1>
- <form action='simple3.cgi'>
- Change name <input type='text' name='name' />
- <input type='submit' />
- </form>
- </body>
- </html>
- """.format(name))
|