CGI Web Python Tutorial

#!c:\Python\python.exe
import cgi
def printHeader( title ):
   print """Content-type: text/html
    

%s
""" % title
printHeader( "Using cgi.FieldStorage with forms" )
print """Enter one of your favorite words here:
   
      
      
      
      

   """
form = cgi.FieldStorage()
if form.has_key( "word" ):
   print """Your word is:  
      %s
""" % cgi.escape( form[ "word" ].value )
print ""