Prueba con esto :
Código PHP:
Ver original{
echo "<table><tr>";
$cont=0;
{
if($row['archivo']!='')
{
echo '<td>
<div style="text-align:left">
<IMG style="WIDTH: 120px; HEIGHT: 81px" src="files/'.$row['archivo'].'">
<A href="destino.php?idempleado='.$row['idempleado'].'">'.Vermas.'</A>
</div>
</td>';
$cont++;
if ($cont==3)
{
echo '</tr><tr>';
$cont=0;
}
}
}
}
else
{
{
if($row['archivo']!='')
{
echo '<tr>
<td>
<IMG style="WIDTH: 10px; HEIGHT: 11px" src="files/'.$row['archivo'].'">
<A href="destino.php?idempleado='.$row['idempleado'].'">'.Vermas.'</A>
</td>';
}
}
}
echo "</tr>
</table>";
Saludos