In PHP you can just use $_POST for POST and $_GET for GET (Query string) variables. What\'s the equivalent in Python?
$_POST
$_GET
They are stored in the CGI fieldstorage object.
import cgi form = cgi.FieldStorage() print "The user entered %s" % form.getvalue("uservalue")