Try this.
Before your while loop:
$cellcolor = array('#ffffff','#f5f5f5');
$color = 0;
Then in your while loop:
echo "<TR BGCOLOR=$cellcolor[$color]>... etc. etc.
Then before the end of the while loop:
if ("0"==$color){$color="1";}
else {$color="0";}
The close the while loop.
Should do the trick.
Darren