Форма PHP с Recaptcha v2 - форма обновляется без отправки - PullRequest
0 голосов
/ 05 июля 2018

Я прочитал много постов здесь и следовал всем советам, но я не могу получить эту форму для отправки в Google Recaptcha v2. После нажатия отправить форму просто обновится.

HTML-форма и php находятся на одной странице. Я в основном просто беру форму, которая уже присутствовала, и добавляю в Google Recaptcha.

Любая помощь будет высоко ценится!

PHP:

<?php
 if(isset($_POST['submit']) && !empty($_POST['submit'])){ 
    if(isset($_POST['g-recaptcha-response']) && !empty($_POST['g-recaptcha-response'])){


        //your site secret key
        $secret = 'SECRET KEY';

        $gRecaptcha = $_POST['g-recaptcha-response'];

        $gRecaptcha = "https://www.google.com/recaptcha/api/siteverify?secret=".$secret."&response=".$_POST['g-recaptcha-response'];

        $response = file_get_contents($gRecaptcha);

        $responseData = json_decode($response);

        if($responseData->success){

          switch ($_POST['location']) {
            case 'Inverness':
              $Send = "email address";
              break;
            case 'Southlake':
              $Send = "email address";
              break;
        }

        $Subject = "A Message From your Website!";
        $name = $_POST['name'];
        $email = $_POST['email'];
        $phone = $_POST['phone'];
        $location = $_POST['location'];
        $message = $_POST['message'];

        $mailbody="Name: $name\n\nEmail: $email\n\nPhone: $phone\n\nLocation: $location\n\nMessage: $message\n\n";
        mail($Send, $Subject, $mailbody);
        $succMsg = 'Your contact request have submitted successfully.';
            exit($succMsg); 
        } else {
            // if not show the error
            $errMsg = 'Robot verification failed, please try again.';
            echo $errMsg;
        }
      }else{
        // if recaptcha is not checked
        $errMsg = 'Please click on the reCAPTCHA box.';
    } 
}  
?> 

HTML:

<div id="contact-form" style="float:left;">
    <form action="<?php echo htmlentities($_SERVER['PHP_SELF']); ?>" method="post" enctype="text/plain">
        <table width="325" cellpadding="0" cellspacing="6">
            <tr>
                <td><label for="name">Name:</label></td>
                <td><input type="text" name="name" value=""/></td>
            </tr>
            <tr>
                <td><label for="email">Email:</label></td>
                <td><input type="text" name="email" id="email" value="" /></td>
            </tr>
            <tr>
                <td><label for="phone">Phone:</label></td>
                <td><input type="text" name="phone" id="phone"  value="" /></td>
            </tr>
            <tr>
                <td><label for="loc">Location:</label></td>
                <td><select name="location"><option value="Inverness">Inverness</option><option value="Southlake">Southlake</option></select></td>
            </tr>
            <tr>
                <td><label for="msg">Questions/Comments:</label></td>
                <td><textarea name="message" id="msg"  value="" cols="20" rows="5" /></textarea></td>
            </tr>
            <tr>
            <td>For spam prevention purposes, please answer the question below</td>
        </tr>
            <tr>

                <td><div style="width:200px" class="g-recaptcha" data-sitekey="SITE KEY"></div></td>
            </tr>
            <tr>
                <td colspan="2" align="left"><input type="submit" name='submit' value="Send" style="color:white;background-color:#bc2729;width:95px;height:29px;border:none" src="images/btn_submit.jpg"></td>
            </tr>
        </table>
    </form>


                </div>

1 Ответ

0 голосов
/ 06 июля 2018

Удалите атрибут enctype="text/plain" из формы, и форма должна быть отправлена. Вы можете разрешить его отправку с типом по умолчанию enctype application/x-www-form-urlencoded.

...