View file obmen/loadfile.php

File size: 724B
<?PHP
include"../tools.php";
include"../head.php";
include"config.php";


if (!empty($_SESSION['login']))
{
$f=mysql_query("SELECT * FROM `".$namebase."` where `id`='".hacker($_GET['id'])."' && `type`='file'");
if (mysql_affected_rows()=="1")
{ $ff=mysql_fetch_array($f);
	$fa=mysql_query("UPDATE `".$namebase."` set `text`=".intval($ff['text']+1).", `time`='".time()."' where `id`='".hacker($_GET['id'])."' && `type`='file'");
}
 header ("Location: ".$_GET['kat']."/".$ff['file']."");
}
else
{
	echo "<div class='contur'>
	<div class='header'>Функция скачивания доступна только для пользователей сайта!!!</div></div>";
}
require ("../foot.php");
?>