FXamel.hashnode.dev·Oct 25, 2023implement google captcha v3 in codeigniter 3Credits : https://gist.github.com/codebymark/ef2d12fba674035a1c89ac2ad36c81e9 I won't go into details since the installation instructions are already provided in the link above. In config/autoload.php : In helpers/recaptcha_helper.php : Insert righ...codeigniter3
FXamel.hashnode.dev·Oct 24, 2023implement google captcha v2 in codeigniter 3In your view file : <div id="captchav2"></div> Create a div to display your captcha. <input type="hidden" class="g-recaptcha-response" name="g-recaptcha-response"> Place it inside your form. <script> var onloadCallback = function() { ...GoogleCaptcha