Файл: news/new.php
Строк: 37
<?php
define('ROOT','../');
define('GCMS',true);
require_once (ROOT.'system/power.php');
if ($id) {
$type = $db -> query("SELECT * FROM `news` where `id`='$id'");
if ($type -> num_rows > 0) $the = $type -> fetch_assoc(); else $the = false;
} else $the = false;
$diz -> head($the['name']);
$diz -> title($the['name']);
$count = $db -> dbcount('COUNT(`id`)','news','`id`='.$id.'');
if ($count > 0) {
$dop = null;
if ($aut) {
if ($ya['level']>4) {
$dop = '<div class="but_razdel">
<a href="func.php?mode=del&id='.$the['id'].'" class="button_razdel" style="width:50%;">Удалить</a>
<a href="func.php?mode=red&id='.$the['id'].'" class="button_razdel" style="width:50%;">Изменить</a>
</div>';
}
}
echo '<div class="fon">'.$func -> tags($func -> smiles($the['new'])).'</div>
'.$dop.'
<div class="fon">
Опубликовал: '.$func->famname($the['user']).' '.$func->online($the['user']).'<br/>
Дата публикации: '.$func -> vremja($the['time']).'';
if ($aut == true and $ya['id'] <> $the['user']) {
$db -> query("UPDATE `news` SET `pr` = pr+1 where `id` = '".$id."'");
$reed=$the['pr']+1;
}else{
$reed=$the['pr'];
}
echo '</br>Прочитано: <b>'.$reed.'</b> раз.</a>';
$pob = $db -> dbcount('COUNT(*)','comes','`where`="news" and `idwh` = '.$the['id'].'');
echo '</br><a href="./comments'.$the['id'].'">Комментарии</a> ('.$pob.')<br/>';
echo '</div>';
}else echo '<div class="fon">Извините,но новость не существует или была удалена!</div>';
echo '<div class="levo"><a href="./" class="levo_tuch">'.$diz -> img('back.png').' Назад</a></div>';
echo '<div class="levo"><a href="/" class="levo_tuch">'.$diz -> img('home.png').' На главную</a></div>';
#####Копирайт#######
$diz -> out($msg);
?>