Файл: www/view.php
Строк: 91
<?
/*-----------------------------------------------------------
Product: BBlog 2.0
License: GNU General Public License (http://www.gnu.org/licenses/gpl.html)
Copyright: (c) 2007 Batia.info
Version: 2.0 RC1
-------------------------------------------------------------*/
define('INDEX', true);
# Подключаем необходимые файлы настроек.
include('config.php');
# Подключаем необходимые функции.
include('include/function.php');
include('include/function_comment.php');
include('admin/function/function.php');
$auth = auth_user(); // Проверяем авторизирован ли юзер как админ
/*
Список переменных используемых в КАЖДОЙ странице.
$content // Содержимое страницы.
$title_page // Заголовок страницы.
$page_description // Описание странички.
$page_keywords // Ключевые слова странички.
*/
$content ='';
$page_title ='Просмотр записи: ';
$page_description ='Описание странички';
$page_keywords ='Кейвордики...';
$id = intval(strip_tags($_GET['id']));
db_connect();
$sql = mysql_query("SELECT * FROM news WHERE id = '$id'") or die("Невозможно выполнить запрос к БД");
$month_name['01'] = 'Января';
$month_name['02'] = 'Февраля';
$month_name['03'] = 'Марта';
$month_name['04'] = 'Апреля';
$month_name['05'] = 'Мая';
$month_name['06'] = 'Июня';
$month_name['07'] = 'Июля';
$month_name['08'] = 'Августа';
$month_name['09'] = 'Сентября';
$month_name['10'] = 'Октября';
$month_name['11'] = 'Ноября';
$month_name['12'] = 'Декабря';
for($i = 0; $i < mysql_num_rows($sql); $i++) {
$r = mysql_fetch_array($sql);
$title = stripslashes($r['title']);
$date = stripslashes($r['date']);
$date = explode("-",$date); // Преобразуем дату в нужный формат.
$year = $date[0];
$month = $month_name[''.$date[1]].'';
$day = $date[2];
$comment = $r['comment'];
$text = stripslashes($r['messege']);
$messege = $text;
$tags = stripslashes($r['tags']);
$show_tags = '';
if($tags !== '') {
$tags = explode(",",$tags); // Разбиваем таги на слова...
/* Сформируем список тагов... и HTML код для вывода
тагов на экран */
$show_tags .='<i>Теги:</i> ';
foreach($tags as $tags_name) {
$show_tags .= '<b><a href="/search.php?tag='.urlencode($tags_name).'" title="'.$tags_name.'">'.$tags_name.'</a></b>, ';
}
}
// Формируем сообщение
$content .= '
<div class="news_body">
<h1 class="title" title="'.$title.'">
<div class="date">
<div class="month">'.$month.'<BR>'.$year.' года</div>
'.$day.'
</div>
'.$title.'
</h1>
<div class="tags">'.$show_tags.'</div>
<div class="print_version"><a href="/print/'.$id.'.html" title="Версия для печати">Версия для печати</a></div>
'.$messege.'
<a name="comments"></a>
';
if($comment == 'ok') { $content .= show_all_comment($id, $module="news"); }
$content .='</div>';
$page_title .= $title;
$page_keywords .= $title.', ';
$page_description .= $title.'. ';
}
# Формируем страничку.
include('template/design.php');
?>