Вход Регистрация
Файл: captcha.php
Строк: 44
<?php

require_once 'sys/inc/start.php';
require_once 
'sys/inc/sess.php';
require_once 
'sys/inc/settings.php';
require_once 
'sys/inc/db_connect.php';
require_once 
'sys/inc/ipua.php';
require_once 
'sys/inc/fnc.php';
$show_all true;
require_once 
'sys/inc/user.php';

$_SESSION['captcha'] = '';
$first mt_rand(1155);
$second mt_rand(19);
$_SESSION['captcha'] = ($first $second);
$code "$first + $second=";
$width 80;
$height 30;
$sign strlen($code);
$figures = array('50''70''90''110''130''150''170''190''210');
$img imagecreatetruecolor($width$height);
$fon imagecolorallocate($img255255255);
imagefill($img00$fon);

for (
$i 0$i $sign$i++) {
    
$h 1;
    
$color imagecolorallocatealpha(
            
$img$figures[rand(0count($figures) - 1)], $figures[rand(0count($figures) - 1)], $figures[rand(0count($figures) - 1)], rand(1030));
    
$letter $code[$i];
    if (empty(
$x)) {
        
$x $width 0.08;
    } else {
        
$x $x + ($width 0.8) / $sign rand(0$width 0.01);
    }
    if (
$h == rand(12)) {
        
$y = (($height 1) / 4) + rand(0$height 0.1);
    } else {
        
$y = (($height 1) / 4) - rand(0$height 0.1);
    }
    
$code.= $letter;
    
imagestring($img7$x$y$letter$color);
}

header("Content-type: image/jpeg");
imagejpeg($img);
Онлайн: 1
Реклама