y este xD
   Código PHP:
   
<TABLE width="747" BORDER=1 CELLPADDING=1 CELLSPACING=1> 
        <TR><TD width="144">*<B>Nombre</B></TD> <TD width="590">*<B>Motivo</B>*</TD></TR> 
<?php         
    $i=0;
    while($row = mysql_fetch_array($result)) { 
        echo "<tr><td>*%s</td> <td>*%s*</td></tr> ";
        $i++;
        if($i%2==0){ 
            echo "<tr bgcolor='#555'>";//esto podrías hacerlo con un estilo ya que con estilos es mejor.
        }else{
             echo "<tr bgcolor='#333'>";
       }
       echo "<td>".$row['nombre']."</td><td> ". $row['motivo']."</td>"; 
       echo "</tr>";
    } 
    mysql_free_result($result); 
    mysql_close($link);     
?> 
</table>