Newer
Older
Old_Homepage / homepage / cgi.py
@zion zion on 30 Sep 2016 259 bytes last job to do is mail service cgi
import cgitb
cgitb.enable()
print("Content-Type: text/html")    # HTML is following
print()                             # blank line, end of headers
print("<TITLE>CGI script output</TITLE>")
print("<H1>This is my first CGI script</H1>")
print("Hello, world!")