Re: send_httpd_headers

2001-07-10 Thread Doug MacEachern
On Sun, 8 Jul 2001, Brooklyn Linux Solutions CEO wrote: Is there a way to know that headers have already been sent before send headers out? you can check for things that should be empty until send_http_header is called, e.g. unless ($r-header_in('Content-type')) { #header has not been

Re: send_httpd_headers

2001-07-10 Thread Doug MacEachern
On Tue, 10 Jul 2001, Doug MacEachern wrote: unless ($r-header_in('Content-type')) { i meant header_out, not header_in

send_httpd_headers

2001-07-08 Thread Brooklyn Linux Solutions CEO
Is there a way to know that headers have already been sent before send headers out? Ruben