PHP/MYSQL Tabellen Zeilen farblich markieren

item: Du darfst innerhalb der Schleife nur einmal das ++ verwenden. Ansonsten zählst du mit jedem Feld die Zeilen hoch!
item: Wennd u mit einfachen ' arbeitest, dann lass die {} weg.

PHP:
   echo '<tr>
    <td bgcolor="'.$colors[++$pos].'" width="32" align="center">&nbsp;</td>
    <td bgcolor="'.$colors[$pos].'" width="40" align="center">&nbsp;</td>
    <td bgcolor="'.$colors[$pos].'" width="115" align="center"><strong>'.$row_bl->name.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="95" align="center"><strong>'.$row_bl->besitzer.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="37" align="center"><strong>'.$row_bl->spiele.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="37" align="center"><strong>'.$row_bl->siege.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="37" align="center"><strong>'.$row_bl->unentschieden.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="37" align="center"><strong>'.$row_bl->niederlagen.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="74" align="center"><strong>'.$row_bl->tore.':'.$row_bl->gegentore.'</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="37" align="center"><strong>TD</strong></td>
    <td bgcolor="'.$colors[$pos].'" width="49" align="center"><strong>'.$row_bl->punkte.'</strong></td>
  </tr>';
 
Zurück