Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment afficher une image BLOB stockée dans la base de données MySql ?

C'est ce que j'ai utilisé quand j'ai voulu faire quelque chose comme ça... il y a longtemps ! =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."' />";
}