Chia sẽ cách tích hợp Recaptcha v2 vào form. Hi vọng sẽ giúp ích được quý anh chị
Xem video
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
<?php function file_get_contents_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_URL, $url); $data = curl_exec($ch); curl_close($ch); return $data; } if($_SERVER['REQUEST_METHOD'] == 'POST'): $secretKey='secretKey'; $responseKey=$_POST['g-recaptcha-response']; $userIP=$_SERVER['REMOTE_ADDR']; $urlrecaptcha='https://www.google.com/recaptcha/api/siteverify?secret='.$secretKey.'&response='.$responseKey.'&remoteip='.$userIP; $response=file_get_contents_curl($urlrecaptcha); var_dump(json_decode($response,true)); endif; ?> <html> <head> <title>Hướng dẫn tích hợp reCAPTCHA</title> <script src="https://www.google.com/recaptcha/api.js" async defer></script> </head> <body> <form action="?" method="POST"> <div class="g-recaptcha" data-sitekey="sitekey"></div> <br/> <input type="submit" value="Submit"> </form> </body> </html> |
Mọi sự sao chép xin ghi rõ nguồn là fcwordpress.net
Chuyên trang về wordpress: hướng dẫn thiết kế theme, plugin, thủ thuật wordpress