Файл: user/bookmark/foto.php
Строк: 69
<?php
/* Мод "Закладки"
* Версия v0.0.1
* Дата последнего редактирования 30.11.2014
* Двиг DCMS Special
* Модифицировал densnet
* Файл foto.php
* Описание: Фото в закладках
*/
require_once '../../sys/inc/start.php';
require_once H . 'sys/inc/compress.php';
require_once H . 'sys/inc/sess.php';
require_once H . 'sys/inc/settings.php';
require_once H . 'sys/inc/db_connect.php';
require_once H . 'sys/inc/ipua.php';
require_once H . 'sys/inc/fnc.php';
require_once H . 'sys/inc/user.php';
if (isset($user)) {
$ank['id'] = $user['id'];
}
if (isset($_GET['id'])) {
$ank['id'] = intval($_GET['id']);
}
$ank = user::get_user($ank['id']);
if ($ank['id'] == 0) {
header("Location: /index.php?" . SID);
exit;
}
if (isset($user) && isset($_GET['delete']) && $user['id'] == $ank['id']) {
mysql_query("DELETE FROM `mark_foto` WHERE `id` = '" . intval($_GET['delete']) . "' AND `id_user` = '$user[id]' LIMIT 1");
msg('Закладка удалена');
header("Location: ?page=" . intval($_GET['page']) . "" . SID);
exit;
}
if (!$ank) {
header("Location: /index.php?" . SID);
exit;
}
$set['title'] = 'Закладки - Фото - ' . $ank['nick']; // заголовок страницы
require_once H . 'sys/inc/thead.php';
title();
err();
aut();
$k_post = mysql_result(mysql_query("SELECT COUNT(*) FROM `bookmark_foto` WHERE `id_user` = '$ank[id]'"), 0);
$k_page = k_page($k_post, $set['p_str']);
$page = page($k_page);
$start = $set['p_str'] * $page - $set['p_str'];
#Навигация
echo "<div class = 'navigation'><a href = '/index.php'>Главная</a> > <a href = '/info.php?id=$ank[id]'>$ank[nick]</a> > <a href = '/user/bookmark/?id=$ank[id]'>Закладки</a> > <a href = '?'><b>Фото</b></a></div>";
echo "<div class = 'razdel'>Интересные фото</div>";
if ($k_post == 0) {
echo "<div class = 'errs'>";
echo img('error.png') . " Нет результатов";
echo "</div>";
}
$q = mysql_query("SELECT * FROM `bookmark_foto` WHERE `id_user` = '$ank[id]' ORDER BY id DESC LIMIT $start, $set[p_str]");
while ($post = mysql_fetch_assoc($q)) {
$f = $post['id_foto'];
$foto = mysql_fetch_assoc(mysql_query("SELECT * FROM `gallery_foto` WHERE `id` = '" . $f . "' LIMIT 1"));
$gallery = mysql_fetch_assoc(mysql_query("SELECT * FROM `gallery` WHERE `id`='" . $foto['id_gallery'] . "' LIMIT 1"));
$ank_p = user::get_user($gallery['id_user']);
echo "<table class = 'razd'><tr><td class = 'icon14'>";
echo "<a href = '/modules/foto/$ank_p[id]/$gallery[id]/$foto[id]/' title = 'Перейти к фото'><img style = ' padding: 2px; max-height: 45px; max-width: 45px; border: 1px solid grey;' src='/modules/foto/foto48/$foto[id].$foto[ras]' /></a><br />";
echo "</td><td class = 'null'>";
echo "<img src = '/style/img/files/$foto[ras].png' /> " . htmlspecialchars($foto['name']) . "<br />";
echo img('clock.png') . " " . date::time($post['time']);
if ($ank['id'] == $user['id']) {
echo "<div id = 'hide' style = 'float:right;'><a class = 'count' href='?delete=$post[id]&page=$page'>" . img('del.png') . "</a></div>";
}
echo "</td></tr></table>";
}
if ($k_page > 1) {
str('?', $k_page, $page);
}
echo "<a href = '/user/bookmark/index.php?id=$ank[id]'><div class = 'razd'>" . img('left.png') . " Вернуться</div></a>";
require_once H . 'sys/inc/tfoot.php';