Hier nochmal die Box (Standard ilch):
<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
echo '<table width="100%" border="0" cellpadding="2" cellspacing="0">';
$erg = db_query('SELECT * FROM prefix_wars WHERE status = "3" ORDER BY datime DESC LIMIT 3');
while ($row = db_fetch_object($erg) ) {
$row->tag = ( empty($row->tag) ? $row->gegner : $row->tag );
if (file_exists("include/images/icons/$row->game.gif")){
$game = '<img src="include/images/icons/'.$row->game.'.gif"> ';
}else{
$game = '';
}
if ($row->wlp == 1) {
$was = '<img src="include/images/icons/win.gif" border="0">';
} elseif ($row->wlp == 2) {
$was = '<img src="include/images/icons/los.gif" border="0">';
} elseif ($row->wlp == 3) {
$was = '<img src="include/images/icons/pad.gif" border="0">';
}
echo'<tr><td align="center"">';
echo''.$game.''.$was.' <a href="index.php?wars-more-'.$row->id.'">';
echo $row->owp.':'.$row->opp.' - '.$row->tag.'</a></td></tr>';
}
echo '</table>';
?>
danke, fireblade

