I have recently started doing cgi in Python and have run into a problem. I
have an html form which has various widgets which accept data. I also have
this in that html file:

<form action="formdata.py" method="post">

formdata.py runs but doesn't seem to contain the data from the form. I'm
not sure of the format for the for with regard to FieldStorage btw. Here
is the contents of formdata.py:

----------------
#! /usr/bin/python
import cgitb, os, sys
cgitb.enable()

import cgi

print "Content-Type: text/html\n\n"
print "<html><head></head><body>"
form = cgi.FieldStorage()
for each in form:
        print "each"
print form['fname'].value, form['lname'].value
#print "address:", form['addr'].value()
print "</body></html>"
------------------

_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to