|
Re: form
As above, if you're sending headers you need to do so before anything is echoed to the screen as that would automatically send the headers. Therefore either don't have any echoes in sections of your code that may then lead to a redirect, or use output buffering to make sure its not actually sent. Add exit; directly under your header call.
|