prueba esto:
Código PHP:
Ver original<table cellspacing="0" cellpadding="0" style="height: 95px;font-size:11px;margin-top:20px;font-family:arial">
<?php
$cons_usuario="SELECT * FROM usuario ORDER BY nombre";
?>
<?php
{
for($i = 1; $i<7; $i++){
?>
<tr>
<td valign="top" style="padding-top:5px;background-color:white;height:122px; width:91px" align="center">
<img src="images/perfil/anonimo.png" id="imagen" style="width:80px;height:80px" onmouseover="this.src='images/perfil/verperfil.png ' "onmouseout="this.src='images/perfil/anonimo.png'"><br/>
<img src="<?php echo $datos_usu->avatar; ?>" style="width:80px;height:80px" id="imagen" onmouseover="this.src='images/perfil/verperfil.png ' "onmouseout="this.src='<?php echo $datos_usu->avatar; ?>'"><br/>
<div style="margin-top:2px">
<?php echo $datos_usu->nombre; ?> <?php echo $datos_usu->apellido1; ?> <?php echo $datos_usu->apellido2; ?>
</div>
</td>
<td style="width:10px; height: 122px;"></td>
</tr>
<?php
}
}
?>
</table>