时间:2021-07-01 10:21:17 帮助过:31人阅读
if($mail -> Send()){ echo ""; header("Location: homeConnect.php");}else{ echo ""; header("Location: homeConnect.php");}
要改成这样的
echo "";
echo "";
header("Location: homeConnect.php");
在 http 头中产生跳转指令,所以跳转发生于脚本执行之前
要改成这样的
echo "";
echo "";
header("Location: homeConnect.php");
在 http 头中产生跳转指令,所以跳转发生于脚本执行之前
echo "";
用script跳转