Размер файла: 1.37Kb
<?php
#Made By: AngelOfFaith
#ICQ: 410755038
#Email: [email protected]
#Url: http://coder-lib.ru
#Все права на скрипт принадлежат автору! Тоесть мне! Скрипт запрещено распространять и/или продавать без согласия автора!
require_once('../lib/inc/fnc.php');
require_once('../lib/inc/db.php');
require_once('../sys/system.php');
$id=intval($_GET[id]);
if(!$id){
$TITLE='Архив загрузок';
$TIT='Архив загрузок';
require_once('../lib/inc/head.php');
textwrite('Пустой параметр!');
$smarty->display('downreit.tpl');
exit;
};
$x=mysql_query("SELECT * FROM `d_file` WHERE `id`='$id'");
if(!mysql_num_rows($x)){
$TITLE='Архив загрузок';
$TIT='Архив загрузок';
require_once('../lib/inc/head.php');
textwrite('Файл не существует!');
$smarty->display('downreit.tpl');
exit;
};
$x=mysql_fetch_array($x);
$go=$home.'down/file/'.$x['path'];
if(!file_exists(BASE.'down/file/'.$x['path'])){
$TITLE='Архив загрузок';
$TIT='Архив загрузок';
require_once('../lib/inc/head.php');
textwrite('Файл удалён!');
$smarty->display('downreit.tpl');
exit;
};
mysql_query("UPDATE `d_file` SET `downed`=`downed`+1 WHERE `id`='$id'");
header("Location: $go");
?>