CGI FieldStorage instances?

Gnarlodious gnarlodious at gmail.com
Mon Nov 22 23:40:44 EST 2010


Let me rephrase the question. Say I have a query string like this:

?view=Data&item=9875

What I want to do is simply invoke process "view" with variable
"Data". This would replace my existing query string mess which looks
like this:

if 'view' in form and 'item' in form:
    HTML=view(Data, item(9875))

so it just seems like it would be easier to encode the process in the
query rather than filtering the query string.

-- Gnarlie



More information about the Python-list mailing list