Alternating Table Backgrounds in PHP
If you like the alternating table backgrounds that are in applications like iTunes, and want them in your web application, there is a simple way to do so in PHP:
<table>
<tr class=”title”>
<td></td>
</tr>
<?php
$i=0;
foreach($row as $r){
if($i&0){$alt=‘ class=”even”‘;}else{$alt=”;}
echo “<tr”.$alt.“>”;
//other table stuff in here
$i++;
echo “</tr>”;
}
?>
</table>