Mysql
 sql >> Database >  >> RDS >> Mysql

Come visualizzare un'immagine BLOB archiviata nel database MySql?

Questo è quello che usavo quando volevo fare una cosa del genere... tanto tempo fa! =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."' />";
}