Dec 31st, 2009, 9:31 AM
Heya,
Any time you see a "Warning: Cannot modify header information" error message, that means exactly that: PHP has already started sending information to the output stream. So if, say, you tried sending any headers (like a header("location: ...") redirect) after the opening <html> tag, it won't work & just throw that error.
Good luck tracking down the problem!
- Ben
Any time you see a "Warning: Cannot modify header information" error message, that means exactly that: PHP has already started sending information to the output stream. So if, say, you tried sending any headers (like a header("location: ...") redirect) after the opening <html> tag, it won't work & just throw that error.
Good luck tracking down the problem!
- Ben