PHP Classes

CodeIgniter ReCaptcha plugin: Perform validation using Recaptcha in CodeIgniter

Recommend this page to a friend!
  Info   Documentation   Demos   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStar 29%Total: 108 All time: 9,681 This week: 67Up
Version License PHP version Categories
ci-google-recaptcha 1.0.0The PHP License5PHP 5, Libraries, Validation, Security
Collaborate with this project 

Author

Description

This package can perform validation using Recaptcha in CodeIgniter forms.

It generates HTML and JavaScript to embed Google Recapctha widget to validate real human users on a Web page form generated by CodeIgniter.

It only requires configuring the Recaptcha client and server secret.

Picture of Eray Akartuna
  Performance   Level  

 

Documentation

Codeigniter-Google-ReCaptcha

Codeigniter-Google-ReCaptcha uses Codeigniter Form Validation.You just need to edit your config and form view.You don't need to write any extra codes.A simple Google ReCaptcha implementation for CodeIgniter - Easy installation - Write Less Code With 2 Steps

Demo

Demo Page

alt tag

Usage

You can easily implement "Google ReCaptcha" to your forms with 2 Steps.You don't need to write any extra codes on the controller for Google ReCaptcha validation.Just use codeigniter validation library.

Code Sample

Controller

$this->load->library('form_validation');
$validation_rules = array(); // If you have another form rules you can define
$this->form_validation->set_rules($validation_rules);
if($this->form_validation->run()){
	exit("Form validated");
}

Installation Step-1

Open the "config/gcaptcha" file and write to "gcaptcha_server_secret" and "gcaptcha_client_secret" codes.

/*
|--------------------------------------------------------------------------
| Google Captcha Server Secret Code
|--------------------------------------------------------------------------
*/
$config['gcaptcha_server_secret'] = '';

/*
|--------------------------------------------------------------------------
| Google Captcha Client Secret Code
|--------------------------------------------------------------------------
*/
$config['gcaptcha_client_secret'] = '';

Installation Step-2

Put these codes into the your html forms.

<?php echo create_gcaptcha();?>
<span class="error"><?php echo gcaptcha_error();?></span>


  DemoExternal page  
  Files folder image Files (9)  
File Role Description
Files folder imageapplication (6 directories)
Accessible without login Plain text file README.md Doc. Documentation

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 100%
Total:108
This week:0
All time:9,681
This week:67Up
 User Ratings  
 
 All time
Utility:41%StarStarStar
Consistency:41%StarStarStar
Documentation:41%StarStarStar
Examples:-
Tests:-
Videos:-
Overall:29%StarStar
Rank:4375