RE: [PHP-WIN] Headers Already Sent - How To Overcome????

2004-11-04 Thread Svensson, B.A.T. (HKG)
> Is there a command or someway to get around this problem without > hacking out all of the other header sending code? Yes there is: check out out: ob_start(), ob_clean and ob_flush(). Put an ob_start() start at the very first line of your code, and just before you send the header information, d

Re: [PHP-WIN] Headers Already Sent - How To Overcome????

2004-11-03 Thread Sudeep
Hi, Add this line at the top of the page: Your problem will be solved. ...SuDeEp... MikeA <[EMAIL PROTECTED]> wrote: I am trying to do the following header ("Location: wlserver/index.php?userKey=$userKey&show=$userKey"); but I keep getting Warning: Cannot modify header information - he

RE: [PHP-WIN] Headers Already Sent - How To Overcome????

2004-11-03 Thread Vail, Warren
Any "echo" or "print" statements executed prior to executing the header statement (such as displaying variables for debugging) will cause this to occur. The line number mentioned in the warning message should tell you which statement actually produced output prior to the header (if there are sever

RE: [PHP-WIN] Headers

2002-02-06 Thread Ross Fleming
>From php.net -> headers manual; header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); // always modified header("Cache-Control: no-store, no-cache, must-revalidate"); // HTTP/1.1 header("Cache-Control: p

Re: [PHP-WIN] headers

2001-04-13 Thread Piotr Pluciennik
Hi, you can find this informations in RFC's - especially concerning HTTP headers in rfc2616 at: http://www.w3.org/Protocols/rfc2616/rfc2616 You can download all RFCs you want from http://www.rfc-editor.org/download.html Greetings Piotr --- lars_Eirik_Rønning <[EMAIL PROTECTED]> wrote: > I wa

Re: [PHP-WIN] headers

2001-04-12 Thread Plutarck
I'd really like a list of headers for mail :) But at least I found this: http://www.shopthenet.net/publiclibrary/CIE/RFC/index.htm It's a list of RFCs. The one of interest to your query, that I know of at the moment: http://www.shopthenet.net/publiclibrary/CIE/RFC/2068/155.htm -- Plutarck Sh