|
Hi Gilligan,
PHP is moaning at you because you cannot redirect using the header() function if anything is outputted to the screen before its called. In your case, HTML.
The second the HTML is printed to screen a content header is automatically set, and then you are trying to set it again using the header() function you see.
You could use a meta redirect or move your PHP up so it runs before your HTML output.
Cheers,
|