Файл: blog/lenta.php
Строк: 55
<?php
include_once '../sys/inc/start.php';
include_once '../sys/inc/compress.php';
include_once '../sys/inc/sess.php';
include_once '../sys/inc/home.php';
include_once '../sys/inc/settings.php';
include_once '../sys/inc/db_connect.php';
include_once '../sys/inc/ipua.php';
include_once '../sys/inc/fnc.php';
include_once '../sys/inc/user.php';
################################################################################
$set['title'] = 'Лента';
include_once '../sys/inc/thead.php';
title();
aut();
################################################################################
if(!isset($user)){
echo '<div class='rekl'>Доступ закрыт.</div>';
}else{
################################################################################
mysql_query("UPDATE `lenta_blog` SET `read` = '1' WHERE `id_kont` = '".$user['id']."' AND `read` = '0'");
################################################################################
$k_post = mysql_result(mysql_query("SELECT COUNT(*) FROM `lenta_blog` WHERE `id_kont` = '".$user['id']."'"),0);
$k_page = k_page($k_post,$set['p_str']);
$page = page($k_page);
$start = $set['p_str']*$page-$set['p_str'];
if($k_post==0){
echo '<div class='rekl'>Нет новых событий!</div>';
}
$q=mysql_query("SELECT * FROM `lenta_blog` WHERE `id_kont` = '".$user['id']."' ORDER BY id DESC LIMIT $start, $set[p_str]");
while ($post = mysql_fetch_array($q)){
if($num==1){
echo "<div class='rekl'>";
$num=0;
}else{
echo "<div class='rekl'>";
$num=1;}
################################################################################
echo trim(br(bbcode(smiles(links(stripcslashes(htmlspecialchars($post['msg'])))))))."n";
echo "<span style='color:#FAA134;'>[".vremja($post['time'])."]</span><br />n";
echo '<a href="delete_lenta.php?id='.$post[id].'">Удалить</a>';
echo '</div>';
}
################################################################################
if($k_page>1){
str("lenta.php?id=".$ank['id']."&",$k_page,$page);
}
}
include_once '../sys/inc/tfoot.php';
?>