#!c:Pythonpython.exeimport os import cgidef printHeader( title ): print """Content-type: text/html<?xml version = "1.0" encoding = "UTF-8"?> <html><head><title>%s</title></head><body>""" % titleprintHeader( "QUERY_STRING example" )print "<h1>Name/Value Pairs</h1>"query = os.environ[ "QUERY_STRING" ]if len( query ) == 0: print """<paragraph><br /> Please add some name-value pairs to the URL above. Or try <a href = "index.py?name=YourName&age=23">this</a>. </paragraph>"""else: print """<paragraph style = "font-style: italic"> The query string is '%s'.</paragraph>""" % cgi.escape( query ) pairs = cgi.parse_qs( query ) for key, value in pairs.items(): print "<paragraph>You set '%s' to value %s</paragraph>" % ( key, value )print "</body></html>"
Name (required)
email (will not be published) (required)
Website