PHP code example of dapikk / ko7-recaptcha

1. Go to this page and download the library: Download dapikk/ko7-recaptcha library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

dapikk / ko7-recaptcha example snippets


Kohana::modules([
...
    'recaptcha' => MODPATH . 'recaptcha',
...
]);

 echo Recaptcha::instance()->get_html(); 

 echo Recaptcha::instance()->get_html('uniqueid12345'); 

 
    $x = Recaptcha::instance()->check($_POST['g-recaptcha-response']);
    if($x == FALSE){
        echo __('Please resubmit Google reCaptcha check!');
    }else{
        echo __('Recaptcha check succeeded!!!!');
    } 

return array(
	'public_key'  => 'YOUR GOOGLE RECAPTCHA SITE KEY',
	'private_key' => 'YOUR GOOGLE RECAPTCHA SECRET KEY',
	'version' => 'v2', //version ang' => 'en',
        'dsize' => 'normal',
);