View file chat/fr.php

File size: 1.76Kb
<?
##################################################################################################
##	                    Version  :  4.0 (28.04.2007)                                                                                                                                                                                                                  ##
##                       Made by  :  Neformat                                            															                      ##
##                             ICQ  :  209534802                                               														 		           ##
## По вопросам приобритения скрипта или обновлений для него обращатьтся на вышеуказанные данные.			                                                                ##
## Распространение скрипта другими лицами запрешено. Скрипт защищён законом об авторском праве. 										##                                     	
##################################################################################################
header("Cache-Control: no-cache");
require("inc.php");
$link = connect_db();

$select = @mysql_query ("Select img,user from users where id='".$usid."'"); 
$inf = mysql_fetch_array ($select);
$img = $inf["img"];
$user = $inf["user"];
$ras=explode(".", $img);
$type=$ras[1];
 
if(strtolower($type)=="jpg")
{
header("Content-type: image/jpeg");
readfile("photos/$usid.jpg");
}
elseif(strtolower($type)=="gif")
{
header("Content-type: image/gif");
readfile("photos/$usid.gif");
}
else
{
header("Content-type: image/png");
readfile("photos/$usid.png");
}
mysql_close($link); 
?>