0

我有一个简单的表格,上面有contact.html帖子send.php和邮件标题,但它只是stays on send.php after submit.

我怎样才能得到这个return back to contact.html。这可以在 send.php 的 php 块内完成吗?

4

2 回答 2

1

见: http: //php.net/manual/en/function.header.php

<?php

// your other code here

header('Location: /contact.html');
exit;
?>

确保在该代码之前没有任何输出,否则您将收到错误消息。

于 2013-11-07T03:19:37.730 回答
1

在你的 PHP 文件中,在所有的表单处理之后,使用这个:

header("Location: contact.html");

唯一的要求是这个函数之前没有输出(包括空行)。

于 2013-11-07T03:19:50.237 回答