Per pacchetti Hosting Linux e Performance Hosting

Desideri analizzare i dati trasmessi con un modulo HTML tramite i metodi POST o GET?
Includi nello script il modulo CGI contenente tutte le funzioni CGI più importanti, tra cui la funzione cgi.FieldStorage() che restituisce i dati dei moduli come Dictionary (in Perl e PHP chiamata 'Hash').

Di seguito un esempio di codice:

#!/usr/bin/python
import cgi
print "Content-Type: text/html\n\n"
my_form = cgi.FieldStorage()
for name in my_form.keys():
print "Input: " + name + " value: " + cgi.escape(my_form[name].value) + "<BR>"