Index: trunk/webapps/cgi-bin/saveTrafficEvent.py
===================================================================
--- trunk/webapps/cgi-bin/saveTrafficEvent.py	(revision 556)
+++ trunk/webapps/cgi-bin/saveTrafficEvent.py	(revision 556)
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+# Save parameter to a file
+# Import modules for CGI handling 
+import cgi, cgitb, os 
+
+# Create instance of FieldStorage 
+form = cgi.FieldStorage() 
+
+# Get data from fields
+outMessage = form.getvalue('msg')
+   
+# write message to file
+text_file = open("dynamicdata/traffic_events.txt", "a")
+text_file.write(outMessage)
+text_file.close()
+
