sql >> Base de Datos >  >> RDS >> Mysql

¿Cómo mostrar una imagen BLOB almacenada en la base de datos MySql?

Esto es lo que usé cuando quise hacer algo así... ¡hace mucho tiempo! =P

$sql = "SELECT image FROM table WHERE cond ORDER BY xxxx DESC LIMIT 5";
$result = mysqli_query($db,$sql);
while($arraySomething = mysqli_fetch_array($result))
{
    echo "<img src='php/imgView.php?imgId=".$arraySomething."' />";
}