For a POST request with appropriate content type, something like that would be required. For such a request the form data is actually part of the request content and cgi.FieldStorage is generally how you would process it.
Graham On 15 June 2011 22:29, nitin chandra <[email protected]> wrote: > Hello Everyone, > > Is this line necessary > > form = cgi.FieldStorage(fp=environ['wsgi.input'], environ=environ) > > to read form field from 'index.py', home.py', etc. ? > > Will this line be more that sufficient to handle a multiuser / > multiple form application, running on a web server ? > > > Thanks > > Nitin > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/modwsgi?hl=en. > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
