Re: [Tutor] reading POST method in cgi script

2007-10-16 Thread Eric Abrahamsen
Thanks for the detailed help. I'm dumping sys.stdin into a variable at the very start now, and operating on that variable for everything else, and all is well. Thanks again, E On Oct 16, 2007, at 12:22 PM, Luke Paireepinart wrote: > Eric Abrahamsen wrote: >> I'm trying to learn the fundamen

Re: [Tutor] reading POST method in cgi script

2007-10-15 Thread Luke Paireepinart
Eric Abrahamsen wrote: > I'm trying to learn the fundamentals of cgi scripting, before moving > on to actually using the cgi module and, eventually, mod_python. I've > grasped that, if users submit a form to my cgi script, I can read the > form contents from os.environ['QUERY_STRING'] if it w

[Tutor] reading POST method in cgi script

2007-10-15 Thread Eric Abrahamsen
I'm trying to learn the fundamentals of cgi scripting, before moving on to actually using the cgi module and, eventually, mod_python. I've grasped that, if users submit a form to my cgi script, I can read the form contents from os.environ['QUERY_STRING'] if it was stuck in the URL via metho