Файл: image.php
Строк: 11
<?php
##########################################################
# За дополнениями обращайтесь: #
# icq 449-424-588 #
# email: Dimonnet@inbox.ru #
##########################################################
# coding by ___хакер___ (MaZaFaKa) #
##########################################################
# запрещено распространять каталог без согласия автора!!!#
##########################################################
error_reporting (0);
header ('content-type: image/gif');
$ref = base64_decode ($ref);
$ref = intval($ref);
if ($ref == '') $ref = 'not';
$im = imagecreate (45,18);
$col = imagecolorallocate ($im,1,1,1);
$col2 = imagecolorallocate ($im,150,150,150);
imagestring ($im,2,1,1," ".$ref,$col2);
imagegif ($im);
?>