php - captcha code interfering with form handler
319
Solution:
You try to send HTTP header inverify.php
:
header('Location: contact-form-thank-you.html');
after sending HTML comment in first line, which is treated as response, from now on sending any headers will issue such warning.
If you really need that comment, put it before<!DOCTYPE
or in<body>
tag.
Answer
Solution:
Try to remove the spaces after your comment
If does not solve, you need to remove the comment, and can put inside
<?php
tag:verify.php