Маймуница в принт..

FirstBlood

Registered
Как да оправя маймуницата в принт ?

Имам в предвид:
Имам статия или новина и като натисна на принт ми излиза на маймуница, вместо както трябва.Опитах се да сложа енкодинг на самия print.php, но не става..

Мерси :wink: !
 
print.php
Код:
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
include LOCALE.LOCALESET."print.php";

if (!isset($item_id) || !isNum($item_id)) fallback("index.php");

echo "<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=windows-1251'>
<title>".$settings['sitename']."</title>
<style type=\"text/css\">
body { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:14px; }
hr { height:1px;color:#ccc; }
.small { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:12px; }
.small2 { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:12px;color:#666; }
</style>
</head>
<body>\n";
if ($type == "A") {
	$res = dbquery(
		"SELECT ta.*, user_id, user_name FROM ".$db_prefix."articles ta
		LEFT JOIN ".$db_prefix."users tu ON ta.article_name=tu.user_id
		WHERE article_id='$item_id'"
	);
	if (dbrows($res) != 0) {
		$data = dbarray($res);
		$article = str_replace("<--PAGEBREAK-->", "", stripslashes($data['article_article']));
		if ($data['article_breaks'] == "y") $article = nl2br($article);
		echo "<b>".$data['article_subject']."</b><br>
<span class='small'>".$locale['400'].$data['user_name'].$locale['401'].ucfirst(showdate("longdate", $data['article_datestamp']))."</span>
<hr>
$article\n";
	}
} elseif ($type == "N") {
	$res = dbquery(
		"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
		LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
		WHERE news_id='$item_id'"
	);
	if (dbrows($res) != 0) {
		$data = dbarray($res);
		$news = stripslashes($data['news_news']);
		if ($data['news_breaks'] == "y") $news = nl2br($news);
		if ($data['news_extended']) {
			$news_extended = stripslashes($data['news_extended']);
			if ($data['news_breaks'] == "y") $news_extended = nl2br($news_extended);
		} else {
			$news_extended = "";
		}
		echo "<b>".$data['news_subject']."</b><br>
<span class='small'>".$locale['400'].$data['user_name'].$locale['401'].ucfirst(showdate("longdate", $data['news_datestamp']))."</span>
<hr>
$news\n";
		if (isset($news_extended)) echo "<hr>\n<b>".$locale['402']."</b>\n<hr>\n$news_extended\n";
	}
}
echo "</body>
</html>\n";
?>
или
Код:
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
include LOCALE.LOCALESET."print.php";

if (!isset($item_id) || !isNum($item_id)) fallback("index.php");

echo "<html>
<head>
<title>".$settings['sitename']."</title>
<meta http-equiv='Content-Type' content='text/html; charset=".$locale['charset']."'>
<style type=\"text/css\">
body { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:14px; }
hr { height:1px;color:#ccc; }
.small { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:12px; }
.small2 { font-family:Verdana,Tahoma,Arial,Sans-Serif;font-size:12px;color:#666; }
</style>
</head>
<body>\n";
if ($type == "A") {
	$res = dbquery(
		"SELECT ta.*, user_id, user_name FROM ".$db_prefix."articles ta
		LEFT JOIN ".$db_prefix."users tu ON ta.article_name=tu.user_id
		WHERE article_id='$item_id'"
	);
	if (dbrows($res) != 0) {
		$data = dbarray($res);
		$article = str_replace("<--PAGEBREAK-->", "", stripslashes($data['article_article']));
		if ($data['article_breaks'] == "y") $article = nl2br($article);
		echo "<b>".$data['article_subject']."</b><br>
<span class='small'>".$locale['400'].$data['user_name'].$locale['401'].ucfirst(showdate("longdate", $data['article_datestamp']))."</span>
<hr>
$article\n";
	}
} elseif ($type == "N") {
	$res = dbquery(
		"SELECT tn.*, user_id, user_name FROM ".$db_prefix."news tn
		LEFT JOIN ".$db_prefix."users tu ON tn.news_name=tu.user_id
		WHERE news_id='$item_id'"
	);
	if (dbrows($res) != 0) {
		$data = dbarray($res);
		$news = stripslashes($data['news_news']);
		if ($data['news_breaks'] == "y") $news = nl2br($news);
		if ($data['news_extended']) {
			$news_extended = stripslashes($data['news_extended']);
			if ($data['news_breaks'] == "y") $news_extended = nl2br($news_extended);
		} else {
			$news_extended = "";
		}
		echo "<b>".$data['news_subject']."</b><br>
<span class='small'>".$locale['400'].$data['user_name'].$locale['401'].ucfirst(showdate("longdate", $data['news_datestamp']))."</span>
<hr>
$news\n";
		if (isset($news_extended)) echo "<hr>\n<b>".$locale['402']."</b>\n<hr>\n$news_extended\n";
	}
}
echo "</body>
</html>\n";
?>
 
Второто, защото автоматично взима стойността на енкодинга от global.php, а
първото е нагласено винаги да е windows-1251.

Ето първото
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251'>
Ето второто
<meta http-equiv='Content-Type' content='text/html; charset=".$locale['charset']."'>

Второто си е съобразено напълно със системата. И аз се учудих, че не са сложили такъв таг в кода, хубаво, че си го забелязал.
 

Горе