Файл: profiwm.pp.ua/loads/pop.php
Строк: 53
<?php
require '../system/sid.php';
require '../system/config.php';
if (!empty($_SESSION['us']))
{
include '../system/user.php';
whorm(0, 'loads');
}
include '../system/head.php';
include '../system/navigator.php';
echo $div_title . 'WAP-скрипты' . $div_end . '
' . $div_menu . '
<img src="../ico/up.gif" alt=""/> <a href="index.php?">WAP-скрипты</a>
' . $block . '
<a href="search.php?">Поиск</a><br/>
<b>Популярные</b> |
<a href="new.php?">Новые</a>
' . $div_end;
if (isset($_GET['del']))
{
if ($user['level'] != 5) {
header('Location: index.php');
die();
}
$del = my_int($_GET['del']);
$sql = mysql_query("SELECT * FROM `loads_f` WHERE `id` = '$del' LIMIT 1");
if (mysql_num_rows($sql) != FALSE) {
$info = mysql_fetch_assoc($sql);
$TXT = '<small>(' . date('d-m-y в H:i:s') . ')</small><br/>' . elite($user['id']) . ' ' . $user['user'] . ' удалил файл <b>' . $info['title'] . '</b> из ЗЦ.';
mysql_query("INSERT INTO admin_logs SET text = '$TXT'");
if (file_exists($info['url'])) unlink($info['url']);
if (file_exists($info['screen'])) unlink($info['screen']);
mysql_query("DELETE FROM `loads_f` WHERE `id` = '$del' LIMIT 1");
mysql_query("DELETE FROM `rating_loads` WHERE `uid` = '$del'");
mysql_query("DELETE FROM `loads_komm` WHERE `uid` = '$del'");
header('Location: pop.php');
} else {
header('Location: pop.php');
}
}
$select = mysql_result(mysql_query("SELECT COUNT(id) FROM `loads_f` WHERE `clicks` > '0'"), 0);
$n = new navigator($select, 10, '?');
if ($select != FALSE) {
$i = 0;
$view = mysql_query("SELECT * FROM `loads_f` WHERE `clicks` > '0' ORDER BY `clicks` DESC {$n->limit}");
while($a = mysql_fetch_assoc($view)) {
##########################
$ext = strtolower(strrchr($a['url'], '.'));
if ($ext == '.zip') $format = '<img src="img/zip.gif" alt="*"/> ';
elseif ($ext == '.rar') $format = '<img src="img/rar.gif" alt="*"/> ';
elseif ($ext == '.gz') $format = '<img src="img/gz.gif" alt="*"/> ';
elseif ($ext == '.tar') $format = '<img src="img/tar.gif" alt="*"/> ';
else $format = '<img src="img/unknown.gif" alt="*"/> ';
##########################
$Size = filesize($a['url']);
$Size = get_size($Size);
$inf = (!empty($a['info'])) ? $a['info'] : 'Без описания';
$cont = (mb_strlen($inf, 'UTF8') > 100)
? mb_substr($inf, 0, 100, 'UTF8') . '...'
: $inf;
if ($user['level'] == 5) {
$dl = '<a href="pop.php?del='.$a['id'].'"><img src="../ico/delete.png" alt=""/></a> ';
}
echo ($i ++ % 2) ? $div_tworazdel : $div_razdel;
echo $dl . '<br/>' . $format . ' <a href="info-'.$a['id'].'">' . $a['title'] . '</a> (' . $Size . ')<br/>' . bb_code($cont) . $div_end;
}
echo $n->navi();
} else {
echo 'Популярных файлов нет.<br/>';
}
include '../system/foot.php';
?>