2016-04-16 13 views
-1

私はPHPフォームにリンクしているHTMLフォームを持っています。送信をクリックするとフォームが送信され、メールが届きます。ただし、フォームが空で、送信をクリックすると、ホームページにリダイレクトされます。提出時にPHPフォームの検証が機能しない

フォームのHTML:

 <form class="form-horizontal" role="form" method="post" action="contact.php"> 
       <div class="form-group"> 
        <label for="name" class="col-sm-2 control-label">Name</label> 
        <div class="col-sm-10"> 
         <input type="text" class="form-control" id="name" name="name" placeholder="First & Last Name"> 
             </div> 
       </div> 
       <div class="form-group"> 
        <label for="telephone" class="col-sm-2 control-label">Phone</label> 
        <div class="col-sm-10"> 
         <input type="telephone" class="form-control" id="telephone" name="telephone" placeholder="Phone Number" > 
        </div> 
       </div> 
       <div class="form-group"> 
        <label for="email" class="col-sm-2 control-label">Email</label> 
        <div class="col-sm-10"> 
         <input type="email" class="form-control" id="email" name="email" placeholder="[email protected]" > 
        </div> 
       </div> 
       <div class="form-group"> 

        <label for="dropdown" class="col-sm-2 control-label">Select One:</label> 
        <div class="col-sm-10"> 
        <select name="select" class="form-control" id="dropdown"> 
        <option>Driver</option> 
        <option>Advertiser</option> 
        </select> 
       </div> 
       </div> 
       <div class="form-group"> 
        <label for="message" class="col-sm-2 control-label">Message</label> 
        <div class="col-sm-10"> 
         <textarea class="form-control" rows="4" name="message"></textarea> 
        </div> 
       </div> 
       <div class="form-group"> 
        <div class="col-sm-10 col-sm-offset-2"> 
         <input id="submit" name="submit" type="submit" value="Send" class="btn btn-primary"> 
        </div> 
       </div> 
       <div class="form-group"> 
        <div class="col-sm-10 col-sm-offset-2"> 

        </div> 
       </div> 
      </form>   

contact.php

<?php 
    if (isset($_POST["submit"])) { 
    $name = $_POST['name']; 
    $email = $_POST['email']; 
    $telephone= $_POST['telephone']; 
      $select = $_POST['select']; 
    $message = $_POST['message']; 
    $from = 'Contact Form'; 
    $to = '[email protected]'; 
    $subject = 'Message from Contact Form'; 

    $body ="From: $name\n E-Mail: $email\n Telephone: $telephone\n Select: $select\n Message:\n $message"; 

    // Check if name has been entered 
    if (!$_POST['name']) { 
     $errName = 'Please enter your name'; 
    } 

    // Check if email has been entered and is valid 
    if (!$_POST['email'] || !filter_var($_POST['email'], FILTER_VALIDATE_EMAIL)) { 
     $errEmail = 'Please enter a valid email address'; 
    } 

    //Check if message has been entered 
    if (!$_POST['message']) { 
     $errMessage = 'Please enter your message'; 
    } 

    // If there are no errors, send the email 
    if (!$errName && !$errEmail && !$errMessage && !$errTel) { 
     if (mail ($to, $subject, $body, $from)) { 
      $result='<div class="alert alert-success">Thank You! I will be in touch</div>'; 
     } else { 
      $result='<div class="alert alert-danger">Sorry there was an error sending your message. Please try again later.</div>'; 
     } 
    } 
    { 
    // To redirect form on a particular page 
    header("Location:http://www.mywebsite.co"); 
    } 
    } 
    ?> 

私の検証が機能しない理由上の任意のアイデア?

ありがとうございます。

+0

! 'isset()'と置き換える必要があります –

答えて

0

あなたはヨールコード内の2つの余分なブラケットを持って、この:

{ 
// To redirect form on a particular page 
header("Location:http://www.mywebsite.co"); 
} 

はただ次のようになります。

// To redirect form on a particular page 
    header("Location:http://www.mywebsite.co"); 

、あなたの場合はブロックを閉じて、空のブロックを開きました。

+0

ありがとうございます。余分な角括弧を削除しましたが、同じ結果が残っています。 – Niki

0

あなたはこの部分を再確認したいことがあります。

{ 
// To redirect form on a particular page 
header("Location:http://www.mywebsite.co"); 
} 

また、また、あなたのPOSTデータにトリム機能を使用する必要があります。

contact.php

if (isset($_POST["submit"])) { 
    $name  = trim($_POST['name']); 
    $email  = trim($_POST['email']); 
    $telephone = trim($_POST['telephone']); 


    /* Other code */ 

    if (!$errName && !$errEmail && !$errMessage && !$errTel) { 
     if (mail ($to, $subject, $body, $from)) { 
     $result='<div class="alert alert-success">Thank You! I will be in touch</div>'; 
     } else { 
     $result='<div class="alert alert-danger">Sorry there was an error sending your message. Please try again later.</div>'; 
     } 
    } else { 
    // To redirect form on a particular page 
    header("Location:http://www.mywebsite.co"); 
    } 
+0

ありがとうございました!私はこれを試しましたが、空白のフォームを提出しようとするとエラーが表示されません。 – Niki

関連する問題