Hey! I know this topic has been covered before, but it still doesn't help me. As the topic of this posts tells us, I want alternate row colours in my table.
I have a while() loop... that's pulling out results from the db and printing them on the screen.
while($r = mysql_fetch_array($rersult)) {
echo "<tr><td>kjbvdfskjbsd</td><td>jkvdsjknbsdv</td></tr>";
}
You get the idea. This is the format of my code... keeping to the same format, how could i make every other row a different colour?
Regards, Stezz.