表单提交后PHP重定向到另一个页面
Posted
技术标签:
【中文标题】表单提交后PHP重定向到另一个页面【英文标题】:PHP Redirect to another page after form submit 【发布时间】:2013-06-14 00:10:01 【问题描述】:我已阅读您所有关于将标题插入 php 表单文件的帖子,以便在提交表单后将用户重定向到另一个 URL - 但我不知道该怎么做。下面是我的代码。你能告诉我在哪里放置标题/重定向,以便信息通过电子邮件发送,然后用户转到另一个 html 页面?
<?php
if(isset($_POST['email']))
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "pecraig@moneymovers.com";
$email_subject = "Mailing List Form";
function died($error)
// your error code can go here
echo "We are very sorry, but there were error(s) found with the form you
submitted. ";
echo "These errors appear below.<br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors.<br /><br />";
die();
// validation expected data exists
if(!isset($_POST['first_name']) ||
!isset($_POST['last_name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['company']) ||
!isset($_POST['street']) ||
!isset($_POST['city']) ||
!isset($_POST['state']) ||
!isset($_POST['zip']))
died('We are sorry, but there appears to be a problem with the form you
submitted.');
$first_name = $_POST['first_name']; // required
$last_name = $_POST['last_name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // required
$company = $_POST['company']; // required
$street = $_POST['street']; // required
$city = $_POST['city']; // required
$state = $_POST['state']; // required
$zip = $_POST['zip']; // required
$error_message = "";
$string_exp = "/^[A-Za-z0-9 .'-]+$/";
if(!preg_match($string_exp,$first_name))
$error_message .= 'The First Name you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$last_name))
$error_message .= 'The Last Name you entered does not appear to be valid.<br />';
$email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]2,4$/';
if(!preg_match($email_exp,$email_from))
$error_message .= 'The Email Address you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$company))
$error_message .= 'The Company you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$street))
$error_message .= 'The Street you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$city))
$error_message .= 'The City you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$state))
$error_message .= 'The State you entered does not appear to be valid.<br />';
if(!preg_match($string_exp,$zip))
$error_message .= 'The Zip Code you entered does not appear to be valid.<br />';
if(strlen($error_message) > 0)
died($error_message);
$email_message = "Response from Mailing List Page. Please enter in database.\n\n";
function clean_string($string)
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Company: ".clean_string($company)."\n";
$email_message .= "Street: ".clean_string($street)."\n";
$email_message .= "City: ".clean_string($city)."\n";
$email_message .= "State: ".clean_string($state)."\n";
$email_message .= "Zip: ".clean_string($zip)."\n";
// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);
?>
<!-- include your own success html here -->
Thanks for subscribing to our mailing list
<?php
?>
【问题讨论】:
不是答案,但请选择其他方式to validate emailaddresses。 将header("Location: thank_you_page.php");
放在@mail($email_to, $email_subject, $email_message, $headers);
之后,并使用您选择的消息创建thank_you_page.php
。
【参考方案1】:
就在@mail($email_to, $email_subject, $email_message, $headers);
之后
header('Location: nextpage.php');
请注意,您永远不会看到“感谢订阅我们的邮件列表”
这应该在下一页,如果你回显任何文本,你会得到一个错误,因为标题已经创建,如果你想重定向永远不要返回任何文本,甚至没有空格!
【讨论】:
【参考方案2】:首先给你的输入类型提交一个名字,比如name='submitform'
。
然后把它放到你的php文件中
if (isset($_POST['submitform']))
?>
<script type="text/javascript">
window.location = "http://www.google.com/";
</script>
<?php
别忘了把网址改成你的。
【讨论】:
在某些情况下,这似乎更可靠。我有一个页面显示标题方法的行为不稳定,切换到这种 javascript 技术似乎已经治愈了它。 感谢您。有一个似乎不会消失的标题问题。Warning: Cannot modify header information - headers already sent by
【参考方案3】:
如果您的重定向使用 PHP,则在重定向指令之前不应向用户回显任何内容。
请参阅header 了解更多信息。
请记住,header() 必须在发送任何实际输出之前调用,无论是通过普通 HTML 标记、文件中的空白行还是从 PHP 发送
否则,您可以使用 Javascript 重定向用户。
随便用
window.location = "http://www.google.com/"
【讨论】:
【参考方案4】:只要没有 html 和/或文本被打印到标准输出,您就可以在任何地方包含您的标头函数。
更多信息和使用方法:http://php.net/manual/en/function.header.php
我在您的代码中看到您echo()
输出一些文本以防出错或成功。不要那样做:你不能。您只能重定向或显示文本。如果您显示文本,您将无法重定向。
【讨论】:
对!我想用重定向替换该成功消息。我可以把它放在成功消息的位置吗? ...但是如果我们需要两者都做呢?是否不可能在页面上同时重定向和显示文本?这太令人困惑了。我觉得我能找到的每个答案都不够清楚。 如果您将用户重定向到另一个页面,您怎么可能显示文本?这就像在问“我怎么能既死又读一本书?”。你要么死而不能阅读,要么能阅读而不是死亡。您可以显示某些内容并然后 重定向用户(经过一段时间后),但这不是服务器端可以完成的。服务器提供页面,期间。您可以使用一些指示重定向的 JavaScript 为页面提供服务。如果您发现所有这些令人困惑,则必须研究和了解客户端-服务器交互以及浏览器/互联网的工作原理。【参考方案5】:无论何时你想重定向,发送标头:
header("Location: http://www.example.com/");
请记住,在此之前您不能向客户端发送数据。
【讨论】:
就是这样 - 我是一个编码笨蛋,需要确切地知道在我的代码示例中将标题放在哪里。谢谢 感谢您订阅我们的邮件列表,在 标签中。 如果在数据发送到客户端后无法使用标头,我们应该如何使用标头?难道我们不需要发送数据来创建他们用来触发重新加载的表单吗? HTTP 调用太不同了(这个例子令人困惑,在两个不同的文件或另一个更好的组织结构中会更清晰)。当用户发送表单时,浏览器会向网络服务器发出新的调用,在该调用中,您可以处理数据并发送标头。【参考方案6】:曾经遇到过这个问题,觉得有必要分享一下我是如何解决的;
我认为在 php 中做到这一点的方法是使用 header 函数:
header ("Location: exampleFile.php");
您可以将该头文件包含在 if 语句中,以便它仅在满足特定条件时重定向,如:
if (isset($_POST['submit'])) header("Location: exampleFile.php")
希望对您有所帮助。
【讨论】:
以上是关于表单提交后PHP重定向到另一个页面的主要内容,如果未能解决你的问题,请参考以下文章