Mega Code Archive

 
Categories / Python Tutorial / CGI Web
 

A Simple Form

File: yourSelf.py #!/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='yourSelf.py'>     Change name <input type='text' name='name' />     <input type='submit' />     </form>   </body> </html> """ % name