Вход Регистрация
Файл: modules/captcha/captcha.php
Строк: 13
<?php
session_start
();
    
$string "";
    for (
$i 0$i 4$i++)
        
$string .= chr(rand(97122));
    
    
$_SESSION['code'] = $string;

    
$dir $_SERVER['DOCUMENT_ROOT']."/modules/captcha/fonts/";

    
$image imagecreatetruecolor(11050);
    
$black imagecolorallocate($image000000);
    
$color imagecolorallocate($image000000200);
    
$white imagecolorallocate($image255255255);

    
imagefilledrectangle($image,0,0,399,99,$white);
    
imagettftext ($image20112340$color$dir."verdana.ttf"$_SESSION['code']);

    
header("Content-type: image/png");
    
imagepng($image);
?>
Онлайн: 0
Реклама