如何更改错误消息的位置?

时间:2013-07-10 04:29:23

标签: php

如何将错误消息从html_form_send.php重定向回我的registration.php页面。这是我得到的,我有我的registration.php与以下代码:

registration.php (位置:/ root /)

<!-- register -->
<div>";
include "$template/email.php";
echo "

</div>
<!-- register -->

我的email.php链接到我的html_form_send.php,其中包含以下代码:

email.php (位置:/ root / models / template)

<form name='htmlform' action='$template/html_form_send.php' method='post' class='form-horizontal well' >

<fieldset>
<legend>Register for an account</legend>

<!-- placeholder for errors -->

<!-- placeholder for errors -->

<br>
<div class='control-group'>
<div class='control-label'>
<label>Name</label>
</div>
<div class='controls'>
<input type='text' placeholder='Type name' name='name' class='input-large'>

我的html_form_send.php具有以下我正在使用的电子邮件客户端的代码。我想在注册页面上显示错误。

registration.php (位置:/ root / models / template)

<?php

if(isset($_POST['email'])) {

// CHANGE THE TWO LINES BELOW
$email_to = "danielobo2@yahoo.com";

$email_subject = "Registering to blanky-store.net web design account.";


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. <a href='../../../register.php'>Return to previous page</a><br /><br />";
echo $error."<br /><br />";
echo "Please go back and fix these errors. <a href='../../../register.php'>Return to previous page</a><br /><br />";
echo "<a href='../../../register.php'>Return to previous page</a><br /><br />";
die();
}

// validation expected data exists
if(!isset($_POST['name']) ||
!isset($_POST['email']) ||
!isset($_POST['telephone']) ||
!isset($_POST['password'])) {
died('We are sorry, but there appears to be a problem with the form you submitted.');       
}

$name = $_POST['name']; // required
$email_from = $_POST['email']; // required
$telephone = $_POST['telephone']; // not required
$password = $_POST['password']; // required

$error_message = "";
$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 />';
}
$string_exp = "/^[A-Za-z .'-]+$/";
if(!preg_match($string_exp,$name)) {
$error_message .= 'The Name you entered does not appear to be valid.<br />';
}
if(strlen($telephone) < 2) {
$error_message .= 'The Telephone you entered do not appear to be valid.<br />';
}
if(strlen($password) < 2) {
$error_message .= 'The Password you entered do not appear to be valid.<br />';
}
if(strlen($error_message) > 0) {
died($error_message);
}
$email_message = "Form details below.\n\n";

function clean_string($string) {
$bad = array("content-type","bcc:","to:","cc:","href");
return str_replace($bad,"",$string);
}

$email_message .= "Name: ".clean_string($name)."\n";
$email_message .= "Email: ".clean_string($email_from)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Password: ".clean_string($password)."\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);  

if (mail($email_to, $email_subject, $email_message, $headers)) {
header("Location: http://blanky-store.net/index.php");
}

?>

<?php
}
die();
?>

我想要做的是显示出现在html_form_send.php上的错误消息,并将它们发送到我的registration.php,而不是显示在我的html_form_send.php页面上。我在下一页http://blanky-store.net/access/register.php

中有一个例子

将email.php页面和html_form_send.php表单合并到一个php页面的代码是什么?

1 个答案:

答案 0 :(得分:0)

将错误消息存储在会话中,然后将页面重定向到registration.php

因此,如果设置了,则检查会话。如果设置了错误消息,则显示会话值,然后取消设置会话值..

希望有所帮助......