0

この PHP フォーム メーラーに問題があります...

ここにサイトがあります。

これはフォームの HTML です...

            <form method="post" id="submitform" action="submitemail.php" >
                        <input type="text" style="height: 40px;" class="formstyle" title="Your Name" placeholder="First & Last Name" name="name" />
                        <input type="tel" style="height: 40px;" class="formstyle" title="Phone Number" placeholder="###-###-####" name="phone" />       
                        <input type="email" style="height: 40px;" class="formstyle" title="Email" placeholder="Email Address" name="email" />
                        <input type="email" style="height: 40px;" class="formstyle" title="Confirm Email" placeholder="Confirm Email" name="email_confirm" />
                        <input type="text" style="height: 40px;" class="formstyle" title="Ticket Price Low" placeholder="$ Amount" name="low_price" />
                        <input type="text" style="height: 40px;" class="formstyle" title="Ticket Price High" placeholder="$ Amount" name="high_price" />
                        <input type="text" style="height: 40px;" class="formstyle" title="Venue Name" placeholder="Where will it be?" name="venue_name" />
                        <input type="text" style="height: 40px;" class="formstyle" title="Event Capacity" placeholder="# of people attending" name="event_capacity" />

                        <textarea name="message" style="height: 90px;" title="Event Description" placeholder="Please describe anything about this event we should know."></textarea>
                        <input class="formstyletwo" type="submit" value="Send">  
            </form>

これがPHPです...

    $emailerror .= "Your booking form has been submitted. You will hear from us shortly.";

    // NOW SEND THE ENQUIRY
    $timestamp = date("F j, Y, g:ia");

    $messageproper ="\n\n" .
        "Name: " .
        ucwords($_POST['name']) .
        "\n" .
        "Phone: " .
        ucwords('phone') .
        "\n" .
        "Email: " .
        $_POST['email'] .
        "\n" .
        "Confirmed Email: " .
        $_POST['email_confirm'] .
        "\n" .
        "Low Budget: " .
        $_POST['low_price'] .
        "\n" .
        "Hight Budget: " .
        $_POST['high_price'] .
        "\n" .
        "Venue Name: " .
        $_POST['venue_name'] .
        "\n" .
        "Event Capacity: " .
        $_POST['event_capacity'] .
        "\n" .
        "Event Description: " .
        $_POST['message'] .
        "\n" .
        "\n\n" ;

        $messageproper = trim(stripslashes($messageproper));
        mail($mailto, $subject, $messageproper, "From: \"$vname\" <".$_POST['e_mail'].">\nReply-To: \"".ucwords($_POST['first_name'])."\" <".$_POST['e_mail'].">\nX-Mailer: PHP/" . phpversion() );
}
?>

<div id='emailerror'>
    <ul>
        <? echo $emailerror; ?>
    </ul>

フォームは問題なく動作します。

  1. 「予約フォームが送信されました。まもなくご連絡いたします。 」というメッセージを表示しようとしていますが、うまくいきません。

  2. もう 1 つの問題は、各フィールドを必須フィールドにしたいということです。電子メール フィールドを必須にすることに関する情報は見つかりましたが、他の情報は見つかりませんでした。

手伝ってくれますか?

4

1 に答える 1

-1
<?php
if(isset($_POST["submit_button_name"])){
mail($mailto, $subject, $messageproper, "From: \"$vname\" <".$_POST['e_mail'].">\nReply-To: \"".ucwords($_POST['first_name'])."\" <".$_POST['e_mail'].">\nX-Mailer: PHP/" . phpversion() );
echo "Your booking form has been submitted. You will hear from us shortly.";
}
else{
echo "An error occured.";
}
?>

フォームを必須にするには、input に required を配置するだけです。

<input type="text" name="myfield" placeholder="Example" required>

どういたしまして。

于 2014-06-23T08:43:52.500 に答える