PHP表单在一个站点上工作但不在新站点上

时间:2016-07-01 10:34:34

标签: php forms

我在一个工作良好的网站上有表格,并返回所需的所有信息,但我在新网站上使用完全相同的php和代码,它将无法正常工作,我还有2个其他网站,它返回到谢谢你的页面,但我没有收到电子邮件,我从

获得了脚本

http://tangledindesign.com/how-to-create-a-contact-form-using-html5-css3-and-php/

并添加了一个下拉菜单,它也可以在一个网站上运行但不在其他网站上运行,任何帮助都会很棒。这个php。     

    $body = "From: $name\n Phone Number: $number\n E-Mail: $email\n type:      $type\n Message:\n $message";



    if ($_POST['submit'] && $human == '4') {                 
    if (mail ($to, $subject, $body, $from)) { 
      header('Location: thankyou.php');
        exit;
    } else { 
        echo '<p>Something went wrong, go back and try again!</p>'; 
} 
} else if ($_POST['submit'] && $human != '4') {
echo '<p>You answered the anti-spam question incorrectly!</p>';
}
?>

和反垃圾邮件;      * 2 + 2是什么? (反垃圾邮件)

0 个答案:

没有答案