#!/usr/bin/python # # helloworld.py - A sample CGI script that prints out 'Hello World' # # Author: Alex Shindich (http://www.shindich.com/) # import sys def main() : # Redirect the error output into the standard output sys.stderr = sys.stdout # Print out the html page print 'Content-type: text/HTML\n' print '' print '
' print '' print '' print '' print '' if __name__ == '__main__': main ()