我在contact.html
上有一个简单的表单,该表单发布到send.php
,其中包含邮件和邮件标题,但它只是stays on send.php
after submit
。
我怎样才能得到return back to contact.html
。这可以在send.php上的php块中完成吗?
答案 0 :(得分:1)
请参阅:http://php.net/manual/en/function.header.php
<?php
// your other code here
header('Location: /contact.html');
exit;
?>
确保在该代码之前没有任何输出,否则您将收到错误。
答案 1 :(得分:1)
在PHP文件中,经过所有表单处理后,请使用:
header("Location: contact.html");
唯一的要求是在此功能之前没有输出(包括空行)。