erik s.
Erfahrenes Mitglied
also ich flipp total aus .. da is nirgends ein fehler drin, nix falsch, gar nix, aber es geht net :
und zwar is $draw immer 0 (null), egal wie viele wars auch unentschieden sind, der bleibt immer bei null, bei won und lost gehts, nur bei draw nicht (???)
hilfeeeeeeeeeee
mfg
PHP:
<?
$query = mysql_query("select * from clanwars order by id desc",$conn_id);
while($zeile = mysql_fetch_array($query)) {
extract($zeile, EXTR_OVERWRITE);
$won = 0;
$draw = 0;
$lost = 0;
if($gesscorewod == $gesscoregegner) {
$color = "#FFFF00";
$draw++;
}
if($gesscorewod > $gesscoregegner) {
$color = "#00AA00";
$won++;
}
if($gesscorewod < $gesscoregegner) {
$color = "#FF0000";
$lost++;
}
echo "<tr bgcolor=#476e83>
<td width=80 align=center><font>
$datum
</font></td>
<td width=300 align=center><font>
$gegner
</font></td>
<td width=60 align=center><font>
$liga
</font></td>
<td width=100 align=center><font color=$color>
$gesscorewod : $gesscoregegner
</font></td>
<td width=0 align=center><font>
<a class=main href=\"index.php?open=clanwars&action=showdetails&cwid=$id\"><img border=0 src=\"pics/details.gif\"></a>
</font></td>
</tr>";
}
?>
</table>
<br><br>
<table width=600 cellpadding=2 cellspacing=1 border=0 bgcolor=black align=center class=alpha>
<tr bgcolor=#476e83>
<td width=200 align=center><font color=#00AA00>
<?echo "won = ".$won;?>
</font></td>
<td width=200 align=center><font color=#FFFF00>
<?echo "draw = ".$draw;?>
</font></td>
<td width=200 align=center><font color=#FF0000>
<?echo "lost = ".$lost;?>
</font></td>
</tr>
</table>
und zwar is $draw immer 0 (null), egal wie viele wars auch unentschieden sind, der bleibt immer bei null, bei won und lost gehts, nur bei draw nicht (???)
hilfeeeeeeeeeee
mfg
Zuletzt bearbeitet: