Re: getting data posted to site

2000-08-15 Thread Doug MacEachern
On Thu, 29 Jun 2000, Scott Alexander wrote: > I'm trying to get the data that is posted from the browser durring a > request. > > if ($r->method ne 'GET') > { > $r->read($buffer,$r->header_in('Content-Length')); > #proccess data... > } > > The $r->read() hangs the request completel

Re: getting data posted to site

2000-06-29 Thread Roger Espel Llima
Scott Alexander wrote: > I'm trying to get the data that is posted from the browser durring a > request. > > if ($r->method ne 'GET') > { > $r->read($buffer,$r->header_in('Content-Length')); > #proccess data... > } There's a higher-level method for that, $r->content; I'd do somethin

getting data posted to site

2000-06-29 Thread Scott Alexander
I'm trying to get the data that is posted from the browser durring a request. if ($r->method ne 'GET') { $r->read($buffer,$r->header_in('Content-Length')); #proccess data... } The $r->read() hangs the request completely. I ran an strace on httpd -X and posted the request secti