Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
「festival」というデータベースの「store」テーブルに保存されているすべての画像を表示するページを作成し、それらを HTMl テーブルに表示したいと考えています。データベース内の画像は BLOB として保存されます。
At first you have to query all images. Then you can display an image saved as blob like this:
echo '<img src="data:image/jpeg;base64,' . base64_encode( $blobimage ) . '" />';
Where $blobimage is the variable that contains your image from database
$blobimage