Alternative row colours
Tuesday, June 8th, 2010I like this method so just getting it down so I remember.
< ?php
$counter = 0;
? >
< table >
< ?php for($array as $item){ ? >
< tr< ?php echo (!($counter++ & 1) ? "class='even'" : "") ? > >
< td>Echo Item< /td>
< /tr>
< ?php } ? >
< /table >