Let's embrace our CAPTCHA and embark on a whimsical, laugh-inducing, and enigmatic journey towards enhanced security.
Coming soon.
Install CAPTCHA-generator
git clone git@github.com:ariyx/CAPTCHA-Generator.git CAPTCHAExample 1: Using a random string to generate a captcha.
require 'Captcha.php';
$permitted_chars = 'ABCDEFGHJKLMNPQRSTUVWXYZ';
$string_length = 6;
$captcha = new Captcha($permitted_chars, $string_length);
$captcha->generateCaptcha();Example 2: Captcha generation with specific text.
require 'Captcha.php';
$captcha = new Captcha(null, null, 'ariyx');
$captcha->generateCaptcha();Because everyone uses this license, I also chose this license :)