2012-12-06 215 views
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,以除去多余的形式标记。

+0

卸下''

内的''标签。 –

回答

2

有拖<form>标签尝试后取出一个流浪<form>标签

使用本

<form name="contact" method="post" action="sendmail.php"> 
    <table border="0" align="center" cellpadding="0" cellspacing="1"> 

,而不是

<form> 
<table border="0" align="center" cellpadding="0" cellspacing="1"> 
    <form name="contact" method="post" action="sendmail.php"> 
+0

谢谢,我错过了。现在我收到了成功的消息,但没有发送电子邮件到提到的帐户。我还在表单之前放置​​了适当的表单标签,对于CSS重叠表单,我想让你知道这是否会产生任何影响 – number8pie

+0

这也取决于托管..如果你已分享它,最多需要10-20分钟..so请等待一段时间,甚至比如果没有收到邮件还要留言 –

+0

还没有电子邮件,它是我用来测试的gmail,以及我测试过的每一次,而且它的工作,它在一分钟内到达。 – number8pie

0

删除顶部<form>标签,您有重复

0

尝试删除第一形式塔格:

**<form>** 
<table border="0" align="center" cellpadding="0" cellspacing="1"> 
<form name="contact" method="post" action="sendmail.php">