<?php
 
error_reporting(E_ALL&E_NOTICE);
 
require_once '../CiulCaptcha.php';
 
 
$words= array('Ciul', 'Ulfa', 'Pa2x', 'Beat');
 
shuffle($words);
 
$gbr= new CiulCaptcha();
 
$gbr->addText($words[0]);
 
header('Content-type: image/jpeg');
 
ImageJpeg($gbr->getImage());
 
?>
 
 |