PHP code example of kmlpandey77 / math-captcha

1. Go to this page and download the library: Download kmlpandey77/math-captcha 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/ */

    

kmlpandey77 / math-captcha example snippets



Kmlpandey77\MathCaptcha\Captcha;

$captcha = new Captcha();
$captcha->image();


Kmlpandey77\MathCaptcha\Captcha;


mlpandey77\MathCaptcha\Captcha;

if(isset($_POST['submit'])){

	if(Captcha::check()){

        //valid action

        echo('<font color="green">Answer is valid</font>');
	}else{
		echo('<font color="red">Answer is invalid</font>');
	}
}
html
<form action="check.php" method="post">
    <p>
        Answer it  echo new Captcha;