[ create a new paste ] login | about

Link: http://codepad.org/WB2BZ6vJ    [ raw code | fork ]

rafiqnayan - Python, pasted on Feb 5:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!C:\Python27\python.exe -u
#!/usr/bin/env python
import cgi
import cgitb; cgitb.enable()  # for troubleshooting

print "Content-type: text/html"
print """
<html>

	<head>
		<title>Sample CGI Script</title>
	</head>

	<body>
		<h1>Hello world</h1>
	</body>
</html>
"""


Create a new paste based on this one


Comments: