Файл: downloads/down.php
Строк: 12
<?php
include_once '../system/head.php';
$id = check($_GET['id']);
$k_post=mysql_result(mysql_query("SELECT COUNT(*) FROM `files` WHERE `id`='.$id.'"),0);
$k_page=k_page($k_post,$set['p_str']);
$page=page($k_page);
$start=$set['p_str']*$page-$set['p_str'];
$query = mysql_query("select * from `files` WHERE `id` LIKE '$id' ORDER BY `id` DESC LIMIT $start, $set[p_str]");
$total = mysql_result(mysql_query("select count(*) from `files`"),0);
if($total == 0)
{echo '<div class="menu">Ошибка</div>';}
else{while ($row = mysql_fetch_assoc($query)){
$down=''.($row['down']+1).'';
mysql_query("UPDATE `files` SET `down`= '$down' WHERE `id`='$id'");
echo'<meta http-equiv="refresh" content="0; url='.$row['file'].'">';
}}
require_once '../system/foot.php';
?>