Размер файла: 1.17Kb
<?php
#-----------------------------------------------------#
# ********* WAP-MOTORS ********* #
# Made by : VANTUZ #
# E-mail : [email protected] #
# Site : http://pizdec.ru #
# WAP-Site : http://visavi.net #
# ICQ : 36-44-66 #
# Вы не имеете право вносить изменения в код скрипта #
#-----------------------------------------------------#
require_once"../template/start.php";
require_once"../template/regglobals.php";
require_once"../template/config.php";
require_once"../template/functions.php";
if(isset($_GET['uz'])) {$uz = check($_GET['uz']); } else {$uz = "";}
if (preg_match('|^[a-z0-9\-]+$|i',$uz)){
if(file_exists(BASEDIR."local/dataavators/$uz.gif")){
$filename = BASEDIR."local/dataavators/$uz.gif";
} else {
$filename = BASEDIR."images/avators/noavatar.gif";
}
$filename = file_get_contents($filename);
header('Content-Disposition: inline; filename="'.$uz.'.gif"');
header("Content-type: image/gif");
header("Content-Length: ".strlen($filename));
echo $filename;
}
exit;
?>