Index: trunk/webapps/cgi-bin/saveEvals.py
===================================================================
--- trunk/webapps/cgi-bin/saveEvals.py	(revision 547)
+++ trunk/webapps/cgi-bin/saveEvals.py	(revision 547)
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+# Import modules for CGI handling
+import cgi, cgitb
+# Create instance of FieldStorage
+form = cgi.FieldStorage()
+# Get data from fields
+output = ""
+for j in range(1, 3):
+    output +=  form.getvalue('group'+str(j))
+    output += ", "
+
+print "Content-type:text/html\r\n\r\n"
+print "<html>"
+print "<head>"
+print "<title>Response CGI Program</title>"
+print "</head>"
+print "<body>"
+print "<h2>We read %s</h2>" % (output)
+print "</body>"
+print "</html>"
