我有一个设置如下的联系表单: 联系页面>联系处理程序>谢谢
在测试我的表单时,所有电子邮件都会通过,但是我的联系处理程序页面上出现错误:
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
我在10号线上有这个:
header("location: thankyou.php");?>
我也试过
exit(header("location: thankyou.php"));?>
如之前的帖子所述。任何帮助表示赞赏!
答案 0 :(得分:0)
这是标头的常见问题。只需将ob_start()放在php代码的开头即可。要了解更多信息,请阅读here
答案 1 :(得分:0)
header("location: thankyou.php");
exit;