I have a contact form that is setup as so: contact page > contact handler > thank you
When testing out my form, all emails are going through, however I get an error on my contact handler page:
Warning: Cannot modify header information - headers already sent by (output started at /nfs/c03/h03/mnt/168570/domains/mikesbaum.com/html/index.php:11) in /nfs/c03/h03/mnt/168570/domains/mikesbaum.com/html/pages/contact_handler.php on line 10
I have this on line 10:
header("location: thankyou.php");?>
And I have also tried
exit(header("location: thankyou.php"));?>
as mentioned on previous posts. Any help is appreciated!