0

これらのフォームを PHP で作成しましたが、必須フィールドがなく、名前、電話番号、電子メールを必須にしたいと考えています。どうすればいいですか?

コードは次のとおりです。

<?php

$company = $_POST['company'];
$contact = $_POST['name'];
$tel = $_POST['phone'];
$email = $_POST['email'];
$comments = $_POST['message'];

$contact_type = $_POST['contact_type'];

if ($contact_type=="1")
{
    $form_desc = "Contact Request Submitted";
    $to_email = "mail@burlingtongroup.net, ross.crawford@burlingtongroup.net, adam.ninnis@burlingtongroup.net";
}
else if ($contact_type=="2" || $contact_type=="3") 
{
    $form_desc = "Call-back Request Submitted";
    $to_email = "mail@burlingtongroup.net, ross.crawford@burlingtongroup.net, adam.ninnis@burlingtongroup.net";
}
else if ($contact_type=="4") 
{
    $form_desc = "Training Seminar Registration";
    $to_email = "adam.wonnacott@burlingtongroup.com";
}


$source_page = $_SERVER['HTTP_REFERER']; 

//If no errors registred, print the success message
if(isset($_POST['Submit']))
{

    global $mailer; 

        if($contact_type=="3")
        {
        $content = $form_desc.",  \n\n".
                   "Company: ".$company."\n".
                   "Contact: ".$contact."\n".
                   "Tel: ".$tel."\n".                                  
                   "Email: ".$email."\n".                  
                   "Message: ".$comments."\n";  
        }
        else if($contact_type=="4")
        {
            $content = $form_desc.",  \n\n".
                       "Company: ".$company."\n".
                       "Contact: ".$contact."\n".                          
                       "Email: ".$email."\n";       

            //echo $content;
            //exit; 
        }
        else
        {
        $content = $form_desc.",  \n\n".
                   "Company: ".$company."\n".
                   "Contact: ".$contact."\n".
                   "Tel: ".$tel."\n".                                  
                   "Email: ".$email."\n".                  
                   "Message: ".$comments."\n";                         
        }




        mail($to_email, $form_desc.":".$company, $content, "From: ".$email );


        header('Location: '.$source_page.'?sent=1');


}
?>
4

3 に答える 3

1

クライアント側の検証を使用することをお勧めします (そのような場合、必須フィールドについてユーザーに警告することができます)。PHP 側からは、次のように検証できます。

if (isset($contact) && isset($tel) && isset($email)) {
    // your code here
}
于 2013-07-03T13:07:04.877 に答える
0

JS を使用してクライアント側の検証を使用できます。もちろん、これは PHP ではありませんが、これはユーザーの時間を節約します。たとえば、http ://www.w3resource.com/javascript/form/non-empty-field.php を参照してください。

または、jQuery を使用する場合: jQuery: フィールドの値が null (空) かどうかのチェック

于 2013-07-03T13:03:58.627 に答える
0

これは役立つはずです...

// Evaluates to true because $var is empty
if (empty($var)) {
    echo '$var is either 0, empty, or not set at all';
}

// Evaluates as true because $var is set
if (isset($var)) {
    echo '$var is set even though it is empty';
}
?> 
于 2013-07-03T13:04:45.233 に答える