Hi,
On Tue, Nov 24, 2009 at 11:27 AM, Tyrone <[email protected]> wrote: > Hi everyone, > > If anyone can please help me. I created code that works on my > localhost wamp setting. When I deploy it on the lamp web hosting, this > error occurs: "Warning: Cannot modify header information - headers > already sent". Any ideas on how to fix this? > > Tyrone the error means: there is some output (usually a couple of bytes) , before you use header() or cookie() or something similar for the first time. Most likely some of your files have additional line endings or spaces after the last ?> Find these, remove them and better even remove the last ?> from each file. HTH, Jochen -- NZ PHP Users Group: http://groups.google.com/group/nzphpug To post, send email to [email protected] To unsubscribe, send email to [email protected]
