<body>""" % title printHeader( "Using cgi.FieldStorage with forms" ) print """<paragra[h>Enter one of your favorite words here:<br /></paragraph> <form method = "post" action = "fig06_10.py"> <paragraph> <input type = "text" name = "word" /> <input type = "submit" value = "Submit word" /> </paragraph> </form>"""
form = cgi.FieldStorage()
if form.has_key( "word" ): print """<paragraph>Your word is: <span style = "font-weight: bold">%s</span></paragraph>""" % cgi.escape( form[ "word" ].value )
print "</body></html>"
Related Scripts with Example Source Code in same category :