View file user/bookmark/foto.php

File size: 2.82Kb
<?php
require( '../../sys/inc/core.php' );
if ( isset( $user ) )
    $ank['id'] = $user['id'];
if ( isset( $_GET['id'] ) )
    $ank['id'] = intval( $_GET['id'] );
$ank = get_user( $ank['id'] );
if ( $ank['id'] == 0 ) {
    header( "Location: /index.php?" . SID );
    exit;
    exit;
}
if ( isset( $user ) && isset( $_GET['delete'] ) && $user['id'] == $ank['id'] ) {
    db::query("DELETE FROM `mark_foto` WHERE `id` = '" . intval( $_GET['delete'] ) . "' AND `id_user` = '$user[id]' LIMIT 1");
    $_SESSION['message'] = 'Закладка удалена';
    header( "Location: ?page=" . intval( $_GET['page'] ) . "" . SID );
    exit;
    exit;
}
if ( !$ank ) {
    header( "Location: /index.php?" . SID );
    exit;
}
$set['title'] = 'Закладки - Фото - ' . $ank['nick'];
include_once '../../sys/inc/thead.php';
title();
err();
aut();
echo '<div class="foot">';
echo '<img src="/style/icons/str2.gif" alt="*" /> <a href="/user/bookmark/index.php?id=' . $ank['id'] . '">Закладки</a> | <b>Фото</b>';
echo '</div>';
$k_post = db::count("SELECT COUNT(*) FROM `mark_foto` WHERE `id_user` = '$ank[id]'");
$k_page = k_page( $k_post, $set['p_str'] );
$page   = page( $k_page );
$start  = $set['p_str'] * $page - $set['p_str'];
echo '<table class="post">';
if ( $k_post == 0 ) {
    echo '<div class="mess">';
    echo 'Нет Фотографий в закладках';
    echo '</div>';
}
$q = db::query("SELECT * FROM `mark_foto`  WHERE `id_user` = '$ank[id]' ORDER BY id DESC LIMIT $start, $set[p_str]");
while ( $post =  $q->fetch_assoc() ) {
    if ( $num == 0 ) {
        echo '<div class="nav1">';
        $num = 1;
    } elseif ( $num == 1 ) {
        echo '<div class="nav2">';
        $num = 0;
    }
    $f       = $post['id_foto'];
    $foto    = db::fetch("SELECT * FROM `gallery_foto` WHERE `id` = '" . $f . "'  LIMIT 1", ARRAY_A);
    $gallery = db::fetch("SELECT * FROM `gallery` WHERE `id`='" . $foto['id_gallery'] . "'  LIMIT 1", ARRAY_A);
    $ank_p   = get_user( $gallery['id_user'] );
    echo '<a href="/foto/' . $ank_p['id'] . '/' . $gallery['id'] . '/' . $foto['id'] . '/" title="Перейти к фото"><img style=" padding: 2px; height: 45px; width: 45px;" src="/foto/foto48/' . $foto['id'] . '.' . $foto['ras'] . '" alt="*" /> ' . htmlspecialchars( $foto['name'] ) . '</a>  (' . vremja( $post['time'] ) . ')';
    if ( $ank['id'] == $user['id'] )
        echo '<div style="text-align:right;"><a href="?delete=' . $post['id'] . '&amp;page=' . $page . '"><img src="/style/icons/delete.gif" alt="*" /></a></div>';
    echo '</div>';
}
echo '</table>';
if ( $k_page > 1 )
    str( '?', $k_page, $page );
echo '<div class="foot">';
echo '<img src="/style/icons/str2.gif" alt="*" /> <a href="/user/bookmark/index.php?id=' . $ank['id'] . '">Закладки</a> | <b>Фото</b>';
echo '</div>';
include_once '../../sys/inc/tfoot.php';
?>