PSP / mod_python ... how to get POST vars on .psp ?

poisondart poisondart985 at gmail.com
Mon Jun 6 22:11:51 EDT 2005


Would something like cgi.FieldStorage() be what you're looking for?

form = cgi.FieldStorage()

form[ <name of variable here> ] = <value of variable>

http://www.python.org/doc/2.3.5/lib/node406.html




More information about the Python-list mailing list