Wenn ich auf artikel drucken klicke erscheint der text nicht wie er im artikel steht sondern nur alles hintereinadner geschrieben wo ist da der fehler das er keine abstaende usw macht?
<?php
# Copyright by: Topolino
# Support: www.honklords.de
defined ('main') or die ( 'no direct access' );
function news_find_kat ($kat) {
$katpfad = 'images/news/';
$katjpg = $katpfad.$kat.'.jpg';
$katgif = $katpfad.$kat.'.gif';
$katpng = $katpfad.$kat.'.jpg';
if ( file_exists( $katjpg ) ) {
$pfadzumBild = $katjpg;
} elseif ( file_exists ( $katgif ) ) {
$pfadzumBild = $katgif;
} elseif ( file_exists ( $katpng ) ) {
$pfadzumBild = $katpng;
}
if ( !empty( $pfadzumBild ) ) {
$katimages = '<img style="width: 300px; hight: 38px" src="'.$pfadzumBild.'" alt="'.$kat.'">';
} else {
$katimages = '<b>'.$kat.'</b><br /><br />';
}
return ( $katimages );
}
$nid = escape($menu->get(1), 'integer');
$abf = "SELECT
a.news_title as title,
a.news_id as id,
DATE_FORMAT(a.news_time,'%d. %m. %Y') as datum,
DATE_FORMAT(a.news_time,'%W') as dayofweek,
a.news_kat as kate,
a.news_text as text,
a.news_recht as recht,
b.name as username
FROM prefix_news as a
LEFT JOIN prefix_user as b ON a.user_id = b.id
WHERE news_id = '".$nid."'
ORDER BY news_time DESC ";
$erg = db_query($abf);
$row = db_fetch_assoc($erg);
$katimages = news_find_kat($row['kate']);
$textToShow = $row['text'];
$textToShow = str_replace('[PREVIEWENDE]','',$textToShow);
$textToShow = stripslashes($textToShow);
$tpl = new tpl ( 'printsite.htm' );
$ar = array (
'TITLE' => $row['title'],
'TEXT' => $textToShow,
'KATIMG' => $katimages,
'KAT' => $row['kate'],
'AUTOR' => $row['username'],
'DATUM' => $row['datum']
);
if ($_SESSION['authright'] <= $row['recht'] AND $row['id'] > 1) {
$tpl->set_ar_out($ar, 0 );
} else {
echo 'Diese News existiert nicht.<br />';
}
?>