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        
 
    while($row = mysql_fetch_array($result)) {
        printf("<tr><td>*%s</td> <td>*%s*</td></tr>", $row["nombre"], $row["motivo"]);
    }
    mysql_free_result($result);
    mysql_close($link);    
?>
</table>    
 


