Файл: newss/news/index.php
Строк: 75
<?
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(); // форма авторизации
$k_post=mysql_result(mysql_query("SELECT COUNT(*) FROM `news`"),0);
$k_page=k_page($k_post,$set['p_str']);
$page=page($k_page);
$start=$set['p_str']*$page-$set['p_str'];
$q=mysql_query("SELECT * FROM `news` ORDER BY `id` DESC LIMIT $start, $set[p_str]");
echo "<table class='post'>n";
if ($k_post==0)
{
echo '<div class="mess">';
echo 'Нет новостей';
echo '</div>';
}
while ($post = mysql_fetch_assoc($q))
{
/*-----------зебра-----------*/
if ($num==0){
echo '<div class="nav2">';
$num=1;
}elseif ($num==1){
echo '<div class="nav1">';
$num=0;
}
/*---------------------------*/
echo "<img src='/style/icons/rss.png' alt='*' /> <a href='news.php?id=$post[id]'>".htmlspecialchars($post['title'])."</a><br /><br /> n";
echo rez_text($post['msg'])."<br />";
if (file_exists(H.'news/img/'.$post['img1'].'.jpg') || file_exists(H.'news/img/'.$post['img2'].'.jpg') || file_exists(H.'news/img/'.$post['img3'].'.jpg') || file_exists(H.'news/img/'.$post['img4'].'.jpg')) echo '<br />';
for ($i=1; $i<=4; $i++) {
if (file_exists(H.'news/img/'.$post['img'.$i.''].'.jpg'))
echo '<a style = "display: inline-block; margin: 1px; border: 1px solid silver;" href="/news/img/'.$post['img'.$i.''].'.jpg"><img src = "img/'.$post['img'.$i.''].'.jpg" width = "50" height = "50"></a>';
}
if (file_exists(H.'news/img/'.$post['img1'].'.jpg') || file_exists(H.'news/img/'.$post['img2'].'.jpg') || file_exists(H.'news/img/'.$post['img3'].'.jpg') || file_exists(H.'news/img/'.$post['img4'].'.jpg')) echo '<br />';
echo "<br /><img src='/style/icons/komm.png' alt='*' />Обсуждений — ".mysql_result(mysql_query("SELECT COUNT(*) FROM `news_komm` WHERE `id_news` = '$post[id]'"),0)."n";
echo " <br /></div>n";
}
echo "</table>n";
if (user_access('adm_news')){ echo "<div class='foot'>";
echo " <img src='/style/icons/ok.gif' alt='*' /> <a href='add.php'>Создать новость</a><br />n"; echo "</div>";
}
if ($k_page>1)str('index.php?',$k_page,$page); // Вывод страниц
include_once '../sys/inc/tfoot.php';
?>