Re-Captcha Package for FuelPHP Framework
For HTML Output of Captcha:
// Check given captcha $response = Recaptcha::check_answer(); if( $response->is_valid ) { // Do anything } else { $error = $response->error; } // HTML Output: echo Recaptcha::get_html($error);
You must set your private and public keys into config file on config/recaptcha.php
return array( "public_key" => "", "private_key" => "" );