CGI handler: Retrieving POST and GET at the same time

Samuel knipknap at gmail.com
Sat Mar 10 13:52:45 EST 2007


Hi,

I have the following form:

<form action="?one=1" method="post">
<input  type="hidden" name="two" value="2" />
</form>

and would like to retrieve both fields, "one" and "two". However, the
following does not work:

form_data = cgi.FieldStorage()
for key in form_data:
    print key + ":", form_data[key].value

It prints out:
two: 2

How can I retrieve the GET variables in that context?

-Samuel




More information about the Python-list mailing list