Danke, das mit dem Lastforum habe ich hinbekommen.
Könntest du nur schnell erklären wie ich die wars in eine ganze Zeile bekomme. Momentan werden die Wars bei der Hälfte getrennt und in die zweite Zeile verschoben dadurch entsteht ein riesen Abstand am Rand.
Kannst es dir auf [url]www.worldofbullets.de[/url] ansehen.
Code Lastmatches:
<?php
# Copyright by Manuel
# Support www.ilch.de
defined ('main') or die ( 'no direct access' );
$farbe = '';
$farb2 = '';
echo '<table width="100%" border="0" cellpadding="2" cellspacing="0">';
$erg = db_query('SELECT DATE_FORMAT(datime,"%d.%m.%y - %H:%i") as datum,tag, owp, opp, gegner, id, game, wlp FROM prefix_wars WHERE status = "3" ORDER BY datime DESC LIMIT 4');
while ($row = db_fetch_object($erg) ) {
$row->tag = ( empty($row->tag) ? $row->gegner : $row->tag );
if ($row->wlp == 1) {
$bild = 'include/images/icons/win.gif';
} elseif ($row->wlp == 2) {
$bild = 'include/images/icons/los.gif';
} elseif ($row->wlp == 3) {
$bild = 'include/images/icons/pad.gif';
}
echo '<tr><td>'.get_wargameimg($row->game).'</td><td align="left">';
echo '<a class="lastnews" href="index.php?wars-more-'.$row->id.'">';
echo $row->datum.' <br><span class="lastnews"> '.$row->owp.' '.$lang['at2'].' '.$row->opp.'</span> - '.$row->tag.'</a></td><td><img src="'.$bild.'"></td></tr>';
}
echo '</table>';
?>