<?php
include ("conimg.php"); // se conecta a la BD
?>
<html>
<head>
<title>Muestra Imagens desde una BD</title>
</head>
<?php
$consulta="select desc, foto from prueba";
$res=mysql_query($consulta,$conex);
echo $numero=mysql_num_rows($res); //numero de registros
?>
<p>MUESTRA LA IMAGEN</p>
<table width="47%" border="1" CELLSPACING=1 CELLPADDING=1>
<tr> <td>DESCRIPCION</td><td>FOTO</td>
</tr>
<?php
while ($fila=mysql_fetch_array($res)) //busca los registos en los campos
{
echo "<tr>";
echo "<td>";
// echo $fila["desc"]," ", $fila["foto"];
echo "<img src=\ "$fila["foto"]">"; // aki deberia mostrar la foto
echo "</td>";
echo "</tr>";
}
?>
</table>
</body>
</html>
porfavor si alguien me puede ayudar dandome algun codigo o mostrandome mi error, estaria agradecido, a todo esto solo tengo 2 campos en mi bd: desc (para la descricion char 35) y foto (donde guardo solo el nombre ejm: "hp.jpg" char de 15), como dije anteriromente intente guardar imagenes con binario y porteriormente mostraralas pero me fallo

Eso es todo.
Bye bye...