0
我有一個PHP電子郵件腳本,曾與一個網站使用它在之前,但我已經移動到重新設計的網站,當我點擊提交頁面重新加載這個額外的文本在網址:
PHP電子郵件腳本不工作
名=李+托馬斯&電子郵件= leethomas%40corwenforestry.co.uk &消息=消息&提交=發送
這裏是在contact.html頁面的形式? :
<form name="contact" method="post" action="sendmail.php">
<table border="0" align="center" cellpadding="0" cellspacing="1">
<tr>
<td>
<input name="name" placeholder="Name" type="text" id="name" size="50">
</td>
</tr>
<tr>
<td>
<input name="email" placeholder="Email" type="text" id="email" size="50">
</td>
</tr>
<tr>
<td>
<textarea name="message" placeholder="Message" cols="50" rows="4" id="message">
</textarea>
</td>
</tr>
<tr>
<td>
<input type="submit" name="Submit" value="Send"> <input type="reset" name="Reset" value="Reset">
</td>
</tr>
</table>
</form>
而這裏的sendmail.php腳本:
<?php
if(isset($_POST['email'])) {
// EDIT THE 2 LINES BELOW AS REQUIRED
$email_to = "[email protected]";
$email_subject = "CFR F3 Contact 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['name']) ||
!isset($_POST['email']) ||
!isset($_POST['message'])) {
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
$message = $_POST['message']; // required
$error_message = "";
$email_exp = '/^[A-Za-z0-9._%-][email protected][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($message) < 2) {
$error_message .= 'The Message 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 .= "Message: ".clean_string($message)."\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);
?>
Thank you for contacting CF Racing F3, we will be in touch with you very soon.
<?php
?>
誰能告訴我,我要去哪裏錯在這裏?
[編輯]現在解決了以下塊引用中的問題,重置按鈕就是這樣做的。
我遇到的另一個問題是,復位按鈕充當另一個 提交/發送鍵,是有辦法,我可以提交/發送鍵 充當那個按鈕?
在此先感謝您的幫助。
[編輯] 改變的HTML,以除去多餘的形式標記。
卸下''