Tienes razón, me faltó decir que no entiendo los ejemplos que he visto.... Por ejemplo: [URL="http://blog.unijimpe.net/crear-captcha-con-php/"]http://blog.unijimpe.net/crear-captcha-con-php/[/URL], en la cual me manda crear variables de sesion....
También he checado este otro ejemplo
Código PHP:
function captcha(){
$md5 = md5(microtime() * mktime());
$string = substr($md5,0,5);
$_SESSION['key'] = $string;
header("Content-type: image/png");
$im = imagecreatetruecolor(198, 48);
$bg = imagecolorallocate($im, 255, 255, 255);
imagefilledrectangle($im, 34, 2, 139, 199, $bg);
$fonts = "fonts/Blazed.ttf";
$izq = 98/2 - 42;
$t_color = imagecolorallocate($im, mt_rand(0,100), mt_rand(0,100), mt_rand(0,100));
imagettftext($im, 29, 1, $izq, 42, $t_color, $fonts, $string);
imagepng($im);
}
pero no me arroja errores, pero tampoco resultados....
Y por eso es que decidí escribir mi duda.