<?php
session_start();
$rand = mt_rand(1000, 9999);// Генерим число
$_SESSION["rand"] = $rand;//пишем в сессию
/*Рисуем капчу*/
$im = imageCreateTrueColor(90, 50);
$c = imageColorAllocate($im, 255, 255, 255);
imageTtfText($im, 20, -10, 10, 30, $c, "fonts/verdana.ttf", $rand);
header("Content-type: image/png"
;
imagePng($im);//Выводим картинку
imageDestroy($im);//Очишаем ресурсы
?>