does anybody know whats wrong with this script?
#!C:\Python26
import cgi
import os
def template():
print 'content-type: text/html; charset=iso-8859-1\n\r'
print '<html>'
print '<head>'
print '</head>'
print '<body>'
print '<form action="" method="post">'
print...