![](http://s3.subirimagenes.com:81/otros/previo/thump_7969966sin-ttulo2.jpg)
he intentado pero siendo mas mi fracaso lo único que conseguí fue dejarlo todo junto y con ayuda le di color
Código PHP:
<td rowspan="3" bgcolor="#FFFFFF"><TABLE width="689" BORDER=1 CELLPADDING=1 CELLSPACING=1>
<TR><TD width="144"> <B>Nombre</B></TD> <TD width="532"> <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 $row['nombre']."</td><td> ". $row['motivo'];
echo "</tr>";
}
mysql_free_result($result);
mysql_close($link);
?>
</table></td>