#!/usr/bin/python import mod_html import sys import os sys.stderr = sys.stdout def html(method, value): print '''\
'''.format(value, method) def main(): print "Content-type: text/html\n"; value = "" updated = "" parsed = mod_html.parse() if 'first' in parsed: value=parsed['first'] html("POST",value) main()