PHP code example of php-quickorm / captcha

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

    

php-quickorm / captcha example snippets


$captcha = new Captcha();
$_SESSION['code'] = $captcha->getCode();
$captcha->render();

// The Captcha has three levels, and the first is the easiest.
$level = 3; 
// Case Sensitive
$caseSensitive = false;


$captcha = new Captcha($level, $caseSensitive);

// Get the code
$code = $captcha->getCode();

// Get the php-gd image resource
$im = $captcha->getImageResource();

// Check the code if correct
$captcha->check("AbcD");

// Send HTTP response as a image
$captcha->render();

    composer 
html
<img src="image.php">