Team:Wageningen UR/Testpage
From 2011.igem.org
(Difference between revisions)
Line 4: | Line 4: | ||
{{:Team:Wageningen_UR/Templates/NavigationLeft}} | {{:Team:Wageningen_UR/Templates/NavigationLeft}} | ||
{{:Team:Wageningen_UR/Templates/Style | text= . | {{:Team:Wageningen_UR/Templates/Style | text= . | ||
+ | |||
#!C:\Python27\python.exe -u | #!C:\Python27\python.exe -u | ||
#!/usr/bin/env python | #!/usr/bin/env python |
Revision as of 11:28, 27 June 2011
Building a Synchronized Oscillatory System
Testpage
.
Sample CGI Script
- !C:\Python27\python.exe -u
- !/usr/bin/env python
import cgi import cgitb; cgitb.enable() # for troubleshooting
print "Content-type: text/html" print
print """
Sample CGI Script
""" form = cgi.FieldStorage() message = form.getvalue("message", "(no message)") print """Previous message: %s
form
""" % cgi.escape(message)