<?
$abfrage="SELECT user.name AS user, spieltag.heim AS sh, spieltag.gast AS sg, spieltag.tore_h AS sth, spieltag.tore_g AS stg, tipps.tipph AS th, tipps.tippg AS tg FROM tipps JOIN user ON tipps.tipper_id = user.id JOIN spieltag ON tipps.spiel_id = spieltag.spiel_id";
$ergebnis=mysql_query($abfrage);
echo '<table border="1"><tr>';
echo '<td></td>';
while($row=mysql_fetch_array($ergebnis))
{
echo '<td>'.$row['sh'].'</td><td>'.$row['sg'].'</td>';
}
echo '</tr>';
$abfrage="SELECT user.name AS user, spieltag.heim AS sh, spieltag.gast AS sg, spieltag.tore_h AS sth, spieltag.tore_g AS stg, tipps.tipph AS th, tipps.tippg AS tg FROM tipps JOIN user ON tipps.tipper_id = user.id JOIN spieltag ON tipps.spiel_id = spieltag.spiel_id";
$ergebnis=mysql_query($abfrage);
while($row=mysql_fetch_array($ergebnis))
{
echo '<tr><td>'.$row['user'].'</td>';
}
$abfrage="SELECT user.name AS user, spieltag.heim AS sh, spieltag.gast AS sg, spieltag.tore_h AS sth, spieltag.tore_g AS stg, tipps.tipph AS th, tipps.tippg AS tg FROM tipps JOIN user ON tipps.tipper_id = user.id JOIN spieltag ON tipps.spiel_id = spieltag.spiel_id";
$ergebnis=mysql_query($abfrage);
while($row=mysql_fetch_array($ergebnis))
{
echo '<td>'.$row['th'].'</td><td>'.$row['tg'].'</td>';
}
echo '</tr>';
echo '</table>';
?>