我有一个简单的表格,上面有contact.html
帖子send.php
和邮件标题,但它只是stays on send.php
after submit
.
我怎样才能得到这个return back to contact.html
。这可以在 send.php 的 php 块内完成吗?
我有一个简单的表格,上面有contact.html
帖子send.php
和邮件标题,但它只是stays on send.php
after submit
.
我怎样才能得到这个return back to contact.html
。这可以在 send.php 的 php 块内完成吗?
见: http: //php.net/manual/en/function.header.php
<?php
// your other code here
header('Location: /contact.html');
exit;
?>
确保在该代码之前没有任何输出,否则您将收到错误消息。
在你的 PHP 文件中,在所有的表单处理之后,使用这个:
header("Location: contact.html");
唯一的要求是这个函数之前没有输出(包括空行)。