codice:
<table> 
<?php

$col = 'blue';
while()
  {
  $col = ($col == 'blue') ? 'red' : 'blue';
  echo "<tr bgcolor='$col'><td>" . $az['nome'] . "</td></tr>\n";
  }

?> 
</table>