Файл: www/search.php
Строк: 140
<?
/*-----------------------------------------------------------
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_index.php');
include('include/function_comment.php');
include('admin/function/function.php');
$auth = auth_user(); // Проверяем авторизирован ли юзер как админ
/*
Список переменных используемых в КАЖДОЙ странице.
$content // Содержимое страницы.
$title_page // Заголовок страницы.
$page_description // Описание странички.
$page_keywords // Ключевые слова странички.
*/
$find_tag = strip_tags(urldecode($_GET['tag']));
$content ='<p>Результаты поиска по запросу тега: <b style="background-color: yellow; color: red;">'.$find_tag.'</b></p>';
$page_title ='Поиск по тегу: '.$find_tag;
$page_description ='Поиск страниц по тегу: '.$find_tag;
$page_keywords = $find_tag;
# Собственно сама программа странички:
db_connect();
if(isset($_GET['start']) ) { $start = $_GET['start']; }
else { $start = 0 ; }
$sql = mysql_query("SELECT * FROM news WHERE tags LIKE '%$find_tag%' ORDER BY id DESC LIMIT $start, $cfg_count_news_adm ") 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);
# Формируем короткие имена переменных.
$id = stripslashes($r['id']);
$title = stripslashes($r['title']);
$date = stripslashes($r['date']);
$date = explode("-",$date); // Преобразуем дату в нужный формат.
$year = $date[0];
$month = $month_name[''.$date[1]].'';
$day = $date[2];
$tags = stripslashes($r['tags']);
$tags = explode(",",$tags); # Разбиваем таги на слова...
/* Сформируем список тагов... и HTML код для вывода
тагов на экран */
$show_tags = '';
foreach($tags as $tags_name) {
if(stristr($tags_name, $find_tag)) $style ='style="background-color: yellow; color: red;" ';
else $style='';
$show_tags .= '<a href="/search.php?tag='.urlencode($tags_name).'" '.$style.'>'.$tags_name.'</a>, ';
}
$comment = stripslashes($r['comment']);
$text = stripslashes($r['messege']);
$messege = $text;
if($comment == "ok"){
$comment_count = count_comment("news".$id);
if($comment_count==0) {
$comment = '<a href="/news/'.$id.'.html#comments">НЕТ КОММЕНТАРИЕВ</a>';
}elseif($comment_count==1) {
$comment = '<a href="/news/'.$id.'.html#comments">ОДИН КОММЕНТАРИЙ</a>';
}elseif($comment_count==2) {
$comment = '<a href="/news/'.$id.'.html#comments">ДВА КОММЕНТАРИЯ</a>';
}elseif($comment_count==3) {
$comment = '<a href="/news/'.$id.'.html#comments">ТРИ КОММЕНТАРИЯ</a>';
}elseif($comment_count==4) {
$comment = '<a href="/news/'.$id.'.html#comments">ЧЕТЫРЕ КОММЕНТАРИЯ</a>';
}else{
$comment = '<a href="/news/'.$id.'.html#comments">'.$comment_count.' КОММЕНТАРИЕВ</a>';
}
}else{
$comment ='';
}
$comment = '<div id="comment">'.$comment.'</div>';
// Формируем сообщение
$content .= '
<div id="news_body">
<h3 class="title" >
<div class="date">
<div class="month">'.$month.'<BR>'.$year.' года</div>
'.$day.'
</div>
<a href="/news/'.$id.'.html" title="'.$title.'">'.$title.'</a>
</h3>
<div class="tags">'.$show_tags.'</div>
'.$messege.'
'.$comment.'
</div>';
# Формируем МЕТА теги
$page_keywords .= $title.', ';
$page_description .= $title.' ';
if($i==0) $page_title = $title;
}
$content.='<p>Страница: '.show_speedbar($sql,'search.php','&tag='.urlencode($find_tag)).'</p>';
# Формируем страничку.
include('template/design.php');
?>