PHP Classes

File: examples/nocaptcha-captcha.php

Recommend this page to a friend!
  Classes of sameer shelavale   PHP Multi CAPTCHA   examples/nocaptcha-captcha.php   Download  
File: examples/nocaptcha-captcha.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Multi CAPTCHA
Perform CAPTCHA validation with multiple solutions
Author: By
Last change: fixed the include filename in examples.
Date: 8 years ago
Size: 941 bytes
 

Contents

Class file image Download
<?php

include_once( "../src/Captcha.php");
include_once(
"../vendor/autoload.php");//not required if you have PSR-4 autoloader


$captcha = new \MultiCaptcha\Captcha([
   
'secret'=> "form1-secret-key",
   
'options' => [
       
'nocaptcha' => [
           
'siteKey'=> "6LfObQkTAAAAADPFtykBvYkNegv2lkGjThGxEvqC", // replace this with your site key
           
'secretKey' => "6LfObQkTAAAAADnUOa3Ry5H_6_Iymt-8-RFDQGdH" // replace this with your secret key
       
]
    ],
   
'refreshUrl'=>'ascii-captcha.php?captcha=refresh',
   
'helpUrl'=>'http://github.com/sameer-shelavale/multi-captcha'
] );


if( isset(
$_REQUEST['submit'] ) ){
    if(
$captcha->validate( $_POST, $_SERVER['REMOTE_ADDR'] ) ) {
        echo
"Correct.";
    }else{
        echo
"Wrong: ". $captcha->error;
    }
}
?>

<form action="" method="post">
    <?php
   
echo $captcha->render() ;
   
?>
<input type="submit" name="submit" value="Submit">

</form>