Kann mir jemand helfen wie ändere ich das so, das der bbcode mit übernommen wird?
Hier der code der Box:
<style type="text/css">
a.newstitle {
font-size:13px;
color:#0083FF;
font-weight: bold;
font-variant: normal;
text-transform: uppercase;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.1em #000;}
a.newstitle:hover {
font-size:13px;
color:#ffffff;
font-weight: bold;
font-variant: normal;
text-transform: uppercase;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.1em #000;}
.newstext {
font-size:10px;
margin-top:3px;
color:#ffffff;
text-decoration: none;
text-shadow: 0.1em 0.1em 0.1em #000;}
</style>
<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
$abf = 'SELECT *
FROM prefix_news
WHERE news_recht >= '.$_SESSION['authright'].'
ORDER BY news_id DESC
LIMIT 0,1';
$erg = db_query($abf);
echo '<table width="458" cellspacing="0"><tr>';
while ($row = db_fetch_object($erg)) {
$Image = '<a href="index.php?news-' . $row->news_kat . '"><img src="'
. ( file_exists('include/images/news/news_' . $row->news_id . '.png') ? 'include/images/news/news_' . $row->news_id . '.png'
: ( file_exists('include/images/news/' . $row->news_kat . '.png') ? 'include/images/news/' . $row->news_kat . '.png' : 'include/images/news/Allgemein.png' ) )
. '" width="143" height="164" alt="' . $row->news_kat . '" style="border-radius: 2px; border: 1px solid #424242;" /></a>';
echo '<td height="165" valign="top"><table width="458" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="155" height="165" rowspan="2" align="left" valign="middle">' . $Image . '</td>
<td width="303" height="22" ><a class="newstitle" href="index.php?news-' . $row->news_id . '" >' . $row->news_title . '</a></td>
</tr>
<tr>
<td width="303" height="120" valign="top" class="newstext"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="120" valign="top">' . substr($row->news_text, 0, 300) . ( strlen($row->news_text) > 300 ? '...' : '') . '<br>
</td>
</tr>
<tr>
<td height="20"><div align="right"><a href="index.php?news-' . $row->news_id . '" alt="weiterlesen" title="Weiterlesen">...Weiterlesen</a></div></td>
</tr>
</table> <div align="left"></div></td>
</tr>
</table>
</td>';
}
echo '</tr></table>';
?>
betroffene Homepage: speed-teamspeak.info/
Zuletzt modifiziert von Speed-Teamspeak am 08.06.2012 - 00:48:18



