Вход Регистрация
Файл: youfone/guestbook/code/code.php
Строк: 20
<?php

session_name
('sid');
session_start();

if( !isset(
$_SESSION['code']) ) exit;

$_SESSION['code'] = (string) $_SESSION['code'];

// Размеры, цвет фона и текста

$image imagecreate(6525);
$background_color imagecolorallocate($image255255255);
$color imagecolorallocate($image515151);

// Рисуем циферки

imagechar($imagerand(35), rand(38), rand(310), $_SESSION['code']{0}, $color);
imagechar($imagerand(35), rand(1722), rand(310), $_SESSION['code']{1}, $color);
imagechar($imagerand(35), rand(3136), rand(310), $_SESSION['code']{2}, $color);
imagechar($imagerand(35), rand(4550), rand(310), $_SESSION['code']{3}, $color);

// Выдаём картинку в браузер

header('Content-Type: image/gif');
imagegif($image);
imagedestroy($image);
?>
Онлайн: 0
Реклама