0

我的 php 和 javascript 知识有限。我正在上课:)

我有一个表格可以检查字段是否为空;如果他们是警报出现。然后第二个 php 文件检查提交的表单以查看电子邮件和电话号码是否符合参数;如果他们不这样做,则不会提交表单,并且新页面上会出现错误。有没有办法将两者结合起来?

这是contact.php上的代码:

<script>
    function validateForm()
    {
    var x=document.forms["contactform"]["companyname"].value;
    var y=document.forms["contactform"]["name"].value;
    var z=document.forms["contactform"]["telephone"].value;
    var e=document.forms["contactform"]["email"].value;
    if (x==null || x=="")
      {
      alert("company name must be filled out");
      return false;
      }
      if (y==null || y=="")
      {
      alert("name must be filled out");
      return false;
      }
      if (z==null || z=="")
      {
      alert("telephone must be filled out");
      return false;
      }
      if (e==null || e=="") 
      {
      alert("email must be filled out");
      return false;
      }
    //send
    alert("Form sent."); 
    document.contactform.submit();  
    }
  </script>

在第二个 send_form_email.php 中:

    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['telephone']) ||
        !isset($_POST['email'])) 
        {
        died('We are sorry, but there appears to be a problem with the form you submitted.');       
    }

    $companyname = $_POST['companyname']; // required
    $name = $_POST['name']; // required
    $telephone = $_POST['telephone']; // required
    $email_from = $_POST['email']; // required
    $comments = $_POST['comments']; // not 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 = "/^[0-9.'-]+$/";


  if(!preg_match($string_exp,$telephone)) {
    $error_message .= 'The Phone Number you entered does 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);
    }
4

2 回答 2

0

我将进行 jQuery 验证:

http://jquery.bassistance.de/validate/demo/

在数据库中输入信息或通过电子邮件发送之前,修剪和 mysql 转义字符。(PHP: http: //php.net/manual/en/function.mysql-real-escape-string.php

基本上,您可以使用 jQuery Validation 插件来完成所有验证客户端。

于 2013-07-11T23:50:29.323 回答
0

我通常使用 jqueryForms ( http://malsup.com/jquery/form/ ) 之类的东西通过 ajax 提交页面并在 PHP 中进行所有验证,这样做的好处是,如果我需要检查一个 emial 地址是否是在使用中或想要对数据运行一些高级服务器端/数据库驱动检查,然后我让它返回一个 json 对象,然后脚本将使用该对象来抛出错误并突出显示字段等。额外的好处是,由于我已经使用 jqueryForms 完成了所有这些操作,因此我可以直接通过 ajax 完成整个表单,并为用户提供流畅的体验。

我不是您可能正在寻找的更复杂的解决方案(并且根据您的经验,您在实施时可能需要仔细阅读),但它只为您提供了一个担心验证的地方,并且不会强迫用户等待重新加载只是为了了解提交的信息不起作用(以及奖励积分,如果提交包含密码或验证码的信息,他们将不必重新输入)。

于 2013-07-12T00:38:43.473 回答