10 lines
210 B
Plaintext
10 lines
210 B
Plaintext
|
#!/usr/bin/env python
|
||
|
"""
|
||
|
This is a demo CGI script that prints a bunch of debug information about
|
||
|
the request as an HTML document. Place it in the cgi-bin/ directory of your
|
||
|
server.
|
||
|
"""
|
||
|
import cgi
|
||
|
|
||
|
cgi.test()
|