Hallo, ich habe zu Abrechnungszwecken eine Tabelle aus der Datenbank auslesen lassen und würde diese nun, der besseren Lesbarkeit wegen, zeilenweise als Zebramuster ausgeben lassen. Leider komme ich nicht dahinter Hat jemand einen Tip für mich ? Hier der Ausgabecode: Code: echo "<table border='1'><tr><th>Buchtitel</th><th>Autor</th><th>Views</th><th>Preis</th><th>Gekauft</th><th>In Summe</th><th>-Steuer</th><th>- Payment%</th><th>- Payment fix</th><th>Kosten</th><th>Netto</th><th>Ihr Anteil</th><th>Anteil Ralf</th></tr>\n"; while($zeile = $ergebnis3->fetch_array()) { echo " <tr><td>" . htmlspecialchars($zeile["products_name"]) . "</td>" /* Buchtitel */ . "<td>" . htmlspecialchars($zeile["manufacturers_name"]) . "</td>" /* Autor */ . "<td>" . htmlspecialchars($zeile["products_viewed"]) . "</td>" /* Produktanzeigen */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19), 2)"]) . "</td>" /* Einzelpreis */ . "<td>" . htmlspecialchars($zeile["ROUND((products_ordered), 2)"]) . "</td>" /* Verkäufe */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered), 2)"]) . "</td>" /* Geamtpreis */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered * 0.19), 2)"]) . "</td>" /* Steuer 19% */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered * 0.019), 2)"]) . "</td>" /* Payment % */ . "<td>" . htmlspecialchars($zeile["ROUND((products_ordered), 2)"] * 0.35 ) . "</td>" /* Payment Fix */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered * 0.19 + products_price * products_ordered * 0.019 + products_ordered * 0.35), 2)"] ) . "</td>" /* Kosten gesammt */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered - products_price * 1.19 * products_ordered * 0.19 - products_price * products_ordered * 0.019 - products_ordered * 0.35), 2)"]) . "</td>" /* Netto Gesammt */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered - products_price * 1.19 * products_ordered * 0.19 - products_price * products_ordered * 0.019 - products_ordered * 0.35), 2)"] / 100 * 70) . "</td>" /* Anteil 70 zu 40 */ . "<td>" . htmlspecialchars($zeile["ROUND((products_price * 1.19 * products_ordered - products_price * 1.19 * products_ordered * 0.19 - products_price * products_ordered * 0.019 - products_ordered * 0.35), 2)"] / 100 * 30) . "</td>" /* Anteil Ralf */ . "</tr>\n"; } echo "</table>"; Danke Ralf