| 
<?php
 include_once( "../src/Captcha.php");
 
 
 $captcha = new \MultiCaptcha\Captcha([
 'secret'=>    "form1-secret-key",
 'options' =>  [
 'honeypot' => [
 'description'=> "Leave this field empty if you are human",
 ]
 ]
 ] );
 
 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>
 
 
 |