Файл: www/print.php
Строк: 81
<?
/*-----------------------------------------------------------
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');
/*
Список переменных используемых в КАЖДОЙ странице.
$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("Невозможно выполнить запрос к БД");
for($i = 0; $i < mysql_num_rows($sql); $i++) {
$r = mysql_fetch_array($sql);
$title = stripslashes($r['title']);
$date = $r['date'];
$comment = $r['comment'];
$text = stripslashes($r['messege']);
$messege = $text;
# Формируем сообщение
$content .= '<h2>'.$title.'</h2>'.$messege;
$page_title .= $title;
$page_keywords .= $title.', ';
$page_description .= $title.'. ';
}
# Формируем страничку.
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<META HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8">
<META HTTP-EQUIV="Content-Style-Type" content="text/css">
<META NAME="Document-state" CONTENT="Dynamic">
<META NAME="Revisit-after" CONTENT="1 days">
<META NAME="ask" CONTENT="ПРИВЕТ ПОИСКОВИК! ПРИШЛИ МНЕ ПОБОЛЬШЕ ПОСЕТИТЕЛЕЙ???">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<METAHTTP-EQUIV="Content-Language" CONTENT="en,ru">
<META NAME="Robots" CONTENT="index, follow">
<META NAME="author" content="Batia">
<META HTTP-EQUIV="Reply-to" content="<?=$cfg_email?>">
<META NAME="Copyright" content="http://batia.info">
<meta http-equiv="Last-Modified" content="<? echo date("D, d M Y H:i:s"); ?> GMT">
<META NAME="Description" CONTENT="<?=$page_description?> , <?=$cfg_sitedescription?>">
<META NAME="Keywords" CONTENT="<?=$page_keywords?>,<?=$cfg_sitekeywords?>">
<title><?=$page_title?> - <?=$cfg_sitename?></title>
</head>
<body>
<div style="width:600px;">
<p>
<FORM style="float:right; padding: 10px 20px 20px 20px;">
<INPUT NAME="print" TYPE="button" VALUE=" Печать страницы " ONCLICK="varitext()">
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function varitext(text){
text=document
print(text)
}
// End -->
</SCRIPT>
</FORM>
<i>
Автор материала: <?=$cfg_author?><br>
Материал с сайта: <a href="http://<?=$cfg_site_url?>">http://<?=$cfg_site_url?></a><br>
Адрес материала в интернете: <a href="http://<?=$cfg_site_url?>/news/<?=$id?>.html">http://<?=$cfg_site_url?>/news/<?=$id?>.html</a>
</i></p>
<HR>
<?=$content?>
</div>
</body></html>