hay un <br> dentro de la tabla al cerrar la fila, quita eso
Cita:
Iniciado por roboty
<?php
$conexion=mysql_connect("localhost","root","");
mysql_select_db("basedatos",$conexion);
$registros=mysql_query ("SELECT * FROM tabladatos order by id_prueba desc",$conexion);
while($fila=mysql_fetch_array($registros)){
$datos= $fila["nombre_archivo"];
echo '<table border="1">
<tr>
<td><img src="/misarchivos/base/.$datos."/></td>
</tr><br>
</table><br><br><br>';
}
?> e