Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Luciano Miguel Ferreira Rocha
Hello I've just created a form like that just for testing and it worked fine, (form name=zbr method=POST action=/cgi-bin/printenv/zbr/?zbr=t) I got only one POST /cgi-bin/printenv/zbr/?zbr=t and the ENV was correct: REQUEST_METHOD=POST QUERY_STRING=zbr=t PATH_INFO=zbr CONTENT_LENGTH=42

Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Perrin Harkins
I've just created a form like that just for testing and it worked fine, (form name=zbr method=POST action=/cgi-bin/printenv/zbr/?zbr=t) I think that's just a coincidence. IIRC, the spec doesn't require this to work, and it doesn't work in all browsers. The only real solution is to not do it.

Re: POST and GET and getting multiple unsynced requests

2001-10-08 Thread Mark Maunder
I think that's just a coincidence. IIRC, the spec doesn't require this to work, and it doesn't work in all browsers. The only real solution is to not do it. PATH_INFO was a good suggestion. I'd go with that if it can't be added to the POST data. Thanks. I've taken your advice and am

POST and GET and getting multiple unsynced requests

2001-10-07 Thread Mark Maunder
Hi all, I've written a web app as a single mod_perl handler. I started writing my forms so they would do a POST and GET simultaneously. I did this by making the form method=POST action=/job_details?job=65 for example. Now I notice that IE and Netscape do a POST and GET request every time the