Python cx_Oracle and Apache
Cousin Stanley
cousinstanley at gmail.com
Mon Aug 25 04:53:38 EDT 2008
> ....
>
> def generate_output():
> print '<html><body></body></html>'
>
> generate_output()
Raja ....
You might try adding a Content-type header followed by
a blank line to your generate_output() function ....
def generate_output() :
print 'Content-type: text/html'
print
print .... rest of your html ....
--
Stanley C. Kitching
Human Being
Phoenix, Arizona
More information about the Python-list
mailing list