hi,
hab dir mal eine liga-lastwars gemacht ich hoffe das ist so in deinen sinn
<?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 a.id,a.tid1,a.tid2,a.points1,a.points2,DATE_FORMAT(datum,"%d.%m.%Y") as datum,stag, b.name as team1,c.name as team2 FROM prefix_liga_matches a
LEFT JOIN prefix_groups b ON a.tid1 = b.id
LEFT JOIN prefix_groups c ON a.tid2 = c.id
ORDER BY datum DESC LIMIT 3');
while ($row = db_fetch_object($erg) ) {
echo '<tr><td align="left">';
Echo '<a href="?liga-showmatches-s'.$row->stag.'">';
echo ''.$row->team1.' vs. '.$row->team2.' zu '.$row->points1.' - '.$row->points2.'</a></td></tr>';
}
echo '</table>';
?>
einfach unter include/boxes/ als ligalastwars.php eintragen.
mfg littlecrow
Zuletzt modifiziert von littlecrow am 25.11.2008 - 11:45:44