CGI module does not parse data

Tim Roberts timr at probo.com
Sat Dec 3 20:48:02 EST 2005


"amfr" <amfr.org at gmail.com> wrote:
>
>import cgi
>form = cgi.FieldStorage()
>print form["test"]
>print "test"
>
>I would only be able to see "test", not "hello world"
>I am sure its not my browser

Did you mean:

  print form["test"].value
-- 
- Tim Roberts, timr at probo.com
  Providenza & Boekelheide, Inc.



More information about the Python-list mailing list