+ 2
FieldStorage is not working
In python cgi module,when I created form=cgi.FieldStorage it os saying that it has no attribute named FieldStorage. Pls..help me.
1 Réponse
+ 8
Begin by writing import cgi.
When you write a new script, consider adding these lines:
import cgitb
cgitb.enable()