Top
Home

##########  Above the While

$i = 0;

##########  at the start of the while

if ($i % 2 != 0) # An odd row
   $rowColor = "#cccccc";
 else # An even row
   $rowColor = "orange";

##########  at the end of the While

$i++;

########## The <tr>

<tr bgcolor=$rowColor>