-1

尝试在我的网站上设置 Jquery 和 PHP 联系表单,在此处找到http://www.greenlite.co.uk/Contactus.html

我认为我对 PHP 文件做错了。我已将必要的电子邮件放入 PHP 文件中,但我不确定我是否已将其正确链接到主代码中,甚至不确定如何做到这一点。甚至在根文件中添加它的位置。

这是我正在使用的代码;

<!DOCTYPE HTML>
<html>
  <head>
    <title>Contact Form</title>

    <link href="js/style.css" rel="stylesheet" />

    <script type="text/javascript" src="js/jquery-1.9.0.min.js"></script>
    <script type="text/javascript" src="js/contact/jquery.validate.min.js"></script>
    <script type="text/javascript" src="js/contact/jquery.form.js"></script>
    <script type="text/javascript" src="js/contact.js"></script>
  </head>
  <body>
<div id="wrap">
  <h1>Contact Greenlite Controls</h1>
  <form id="contactform" action="processForm.php" method="post">
    <table>
      <tr>
        <td><label for="name">Name:</label></td>
        <td><input type="text" id="name" name="name" /></td>
      </tr>
      <tr>
        <td><label for="email">Email:</label></td>
        <td><input type="text" id="email" name="email" /></td>
      </tr>
      <tr>
        <td><label for="message">Message:</label></td>
        <td><textarea id="message" name="message" rows="5" cols="20"></textarea></td>
      </tr>
      <tr>
        <td></td>
        <td><input type="submit" value="Send" id="send" /></td>
      </tr>
    </table>
  </form>
  <div id="response"></div>
</div>
  </body>
</html>

这是PHP

<?php

// Clean up the input values
foreach($_POST as $key => $value) {
 if(ini_get('magic_quotes_gpc'))
$_POST[$key] = stripslashes($_POST[$key]);

  $_POST[$key] = htmlspecialchars(strip_tags($_POST[$key]));
}

// Assign the input values to variables for easy reference
$name = $_POST["name"];
$email = $_POST["email"];
$message = $_POST["message"];

// Test input values for errors
$errors = array();
if(strlen($name) < 2) {
  if(!$name) {
    $errors[] = "You must enter a name.";
  } else {
    $errors[] = "Name must be at least 2 characters.";
  }
}
 if(!$email) {
  $errors[] = "You must enter an email.";
} else if(!validEmail($email)) {
  $errors[] = "You must enter a valid email.";
}
if(strlen($message) < 10) {
  if(!$message) {
    $errors[] = "You must enter a message.";
  } else {
    $errors[] = "Message must be at least 10 characters.";
  }
}

if($errors) {
  // Output errors and die with a failure message
   $errortext = "";
  foreach($errors as $error) {
    $errortext .= "<li>".$error."</li>";
  }
  die("<span class='failure'>The following errors occured:<ul>". $errortext ."</ul>        </span>");
}

// Send the email
$to = "mick@greenlite.co.uk";
$subject = "Contact Form: $name";
$message = "$message";
$headers = "From: $email";

mail($to, $subject, $message, $headers);

// Die with a success message
die("<span class='success'>Success! Your message has been sent.</span>");

// A function that checks to see if
// an email is valid
function validEmail($email)
{
   $isValid = true;
   $atIndex = strrpos($email, "@");
   if (is_bool($atIndex) && !$atIndex)
   {
      $isValid = false;
  }
   else
   {
      $domain = substr($email, $atIndex+1);
      $local = substr($email, 0, $atIndex);
      $localLen = strlen($local);
      $domainLen = strlen($domain);
      if ($localLen < 1 || $localLen > 64)
      {
         // local part length exceeded
         $isValid = false;
      }
      else if ($domainLen < 1 || $domainLen > 255)
      {
         // domain part length exceeded
         $isValid = false;
      }
      else if ($local[0] == '.' || $local[$localLen-1] == '.')
     {
       // local part starts or ends with '.'
     $isValid = false;
  }
  else if (preg_match('/\\.\\./', $local))
  {
     // local part has two consecutive dots
     $isValid = false;
  }
  else if (!preg_match('/^[A-Za-z0-9\\-\\.]+$/', $domain))
  {
     // character not valid in domain part
     $isValid = false;
  }
  else if (preg_match('/\\.\\./', $domain))
  {
     // domain part has two consecutive dots
     $isValid = false;
  }
  else if(!preg_match('/^(\\\\.|[A-Za-z0-9!#%&`_=\\/$\'*+?^{}|~.-])+$/',
             str_replace("\\\\","",$local)))
  {
     // character not valid in local part unless
     // local part is quoted
     if (!preg_match('/^"(\\\\"|[^"])+"$/',
         str_replace("\\\\","",$local)))
     {
        $isValid = false;
     }
  }
  if ($isValid && !(checkdnsrr($domain,"MX") || checkdnsrr($domain,"A")))
  {
     // domain not found in DNS
     $isValid = false;
    }
   }
        return $isValid;
    }

    ?>

基本上,如果不清楚,在我使用联系表格后,我会得到“正在发送”,但它不会死。我没有收到成功消息,也没有发送邮件。我只能假设它与PHP有关。

我已将 PHP 文件放入名为 php 的根目录中的文件夹中,并尝试从 "action="php/ProcessForm.php" 中调用它,但这并没有什么不同。

4

1 回答 1

0

为什么不使用 Jquery 验证表单,而是在 PHP 中验证?

尝试使用 AJAX 发送您的表单和 Jquery UI 以响应您的用户成功或失败。

尝试在查询和 $.ajax 中使用 .serialize() ( http://api.jquery.com/serialize/ ) 函数。

这样,您就可以清理您的 php 文件并找到错误。

看一个简单的代码示例:

调用提交函数:

  $().ready(function(e) {
    $("#cad_cliente").submit(function(e){
        e.preventDefault();
        insertDataForm(getDataForm());
                });
        return false;
    });

序列化参数:

  function getDataForm(){
    var params=$("#cad_cliente").serialize();
    return params;
  }

在您的 php 文件中发布值:

    $.ajax({
        type: 'post',
        url:'registra.php',
        data:params,
        cache:false,
        success: function(){
            Alert("mesenge");
        }
    });
}

很高兴我能帮助你...

于 2013-01-29T12:16:03.807 回答