19 Maret 2022

Kode invisible google recaptcha v2 dengan verifikasi respons

<?php if (isset($_POST[‘g-recaptcha-response’])) {     $secret_key = ‘YOUR_SECRET_KEY’;     $url = ‘https://www.google.com/recaptcha/api/siteverify?secret=’.$secret_key.’&response=’.$_POST[‘g-recaptcha-response’];     $curl = curl_init();     curl_setopt($curl, CURLOPT_URL, $url);     curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);     curl_setopt($curl, […]

Selanjutnya