Вход Регистрация
Файл: www/page.php
Строк: 55
<?
/*-----------------------------------------------------------

    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          ='';



$link_name strip_tags(trim($_GET['link_name']));

db_connect();

    
$sql mysql_query("SELECT * FROM page WHERE link_name = '$link_name'") or die("Невозможно выполнить запрос к БД");

    for(
$i 0$i mysql_num_rows($sql); $i++) {
        
$r mysql_fetch_array($sql);

        
$id $r['id'];
        
$title stripslashes($r['title']);
        
$comment $r['comment'];
        
$text stripslashes($r['messege']);
        
$messege $text;
        if(
$comment == 'ok') {  $comment show_all_comment($id$module="pages"); }
        else{ 
$comment=''; }
        
// Формируем сообщение
        
$content .= '
        <div class="news_body">
        <h1 class="title">'
.$title.'</h1>    
        '
.$messege.'
        '
.$comment.'
         </div>'
;

    }

$page_title   =$title;
$page_description =$title;
$page_keywords    =$title;
// Формируем страничку.

include('template/design.php');

?>
Онлайн: 0
Реклама