0

嗨,我从我一直在搞乱的互联网脚本中获得了一个联系人,唯一的问题是我试图添加到它的验证不起作用。基本上它的形式有姓名、电子邮件、号码、类型和评论。我的主要验证问题是我想要的数字字段,如果它是空的,它会回显“无数字”,当人们输入字母而不是数字时,它会回显“您需要输入数字”。像大声笑的东西。但我被困住了。有大神能帮帮我吗?在此先感谢这里是下面的完整代码。ps 很抱歉之前的帖子我不小心把脚本剪掉了:$

<?php

$nowDay=date("d.m.Y");
$nowTime=date("H:i:s");
$subject = "E-mail from my site!";  

if (isset($_POST['submit'])) {

    //contactname
    if (trim($_POST['name'] == '')) {
        $hasError = true;
    } else {
        $name = htmlspecialchars(trim($_POST['name']));
    }
    //emailaddress  
    if (trim($_POST['email'] == '')) {
        $hasError = true;
    } else if (!preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i",trim($_POST['name']))) {
        $hasError = true;
    } else {
        $email = htmlspecialchars(trim($_POST['email']));
    }            
    //phonenumber    
    if (trim($_POST['number'] == '')) 
    {
       $fake_num = true;
    }
    else if(!is_numeric($_POST['phonenumber']))
    {
        $fake_num = true;
    }
    else 
    {
        $number = htmlspecialchars(trim($_POST['number']));
    }
    //type
    $type = trim($_POST['type']);

    //comment    
    if (trim($_POST['comment'] == '')) {
        $hasError = true;
    } else {
        $comment = htmlspecialchars(trim($_POST['comment']));
    }               

    if (!isset($hasError) && !isset($fake_num)) {
        $emailTo = 'email@hotmail.com';
        $body = "   Name: $name\n\n
                    Email: $email\n\n
                    Phone number: $number\n\n
                    Type: $type\n\n
                    Comment: $comment\n\n
                    \n This message was sent on: $nowDay at $nowTime";

        $headers = 'From: My Site <'.$emailTo.'>'."\r\n" .'Reply-To: '. $email;
        mail($emailTo, $subject, $body, $headers);
        $emailSent = true;
    }
}
?>


<?php

if(isset($hasError))
{
    echo"<p>form has error</p>";
}
?>

<?php           
if(isset($fake_num))
{
    echo"<p>wrong num</p>";
}
?>

<?php
if(isset($emailSent) && $emailSent == true)
{ 
    echo "<p><strong>Email Successfully Sent!</strong></p>";
    echo "<p>Thank you <strong> $name </strong> for using my contact form! Your email was successfully sent and I will be in touch with you soon.</p>";
} 
?>


<div id="stylized" class="myform">
    <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" name="bookingform" id="bookingform">
        <h1>Booking form</h1>
        <label>
            Name
            <span class="small"></span>
        </label>
        <input type="text" name="name" id="name" class="required"/>
        <label>
            Your email:
            <span class="small"></span>
        </label>
        <input type="text" name="email" id="email" class="required"/>
        <label>
            Contact Number:
            <span class="small"></span>
        </label>
        <input type="text" name="number" id="number" class="required" />                                                    
        <label>
            Car required:
            <span class="small"></span>
        </label>
        <select name="type" id="type">
            <option selected="selected">Manual</option>
            <option>Automatic</option>
      </select>   
        <label>
            Comment:
            <span class="small"></span>
        </label>
        <textarea cols="" rows="" name="comment" id="comment" class="required"></textarea>                
        <button type="submit" name="submit">Submit</button> 
    </form>
</div>
4

1 回答 1

2

要检查是否已输入数字,您可以使用:

if (!preg_match('/^?[0-9]{0,10}$/', $_POST['number'])) {
echo "Please enter a valid number"; //Failed to meet criteria
}

在这里,您还可以使用大括号指定构成有效数字的数字数量{0,10},在这种情况下,该数字最多可以有 11 位数字。如果您要求它的长度只有 11 位,请使用{11}. 如果您想检查是否已经输入了一个数字,您可以使用:

if (empty($_POST['number'])) {
echo "Please enter a valid number"; //Field was left empty
}

PHP 确实有一个内置的电子邮件验证功能,您可以使用它

filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)

如果输入的电子邮件格式正确,则返回 true。

于 2011-12-25T23:23:39.393 回答