-3

「festival」というデータベースの「store」テーブルに保存されているすべての画像を表示するページを作成し、それらを HTMl テーブルに表示したいと考えています。データベース内の画像は BLOB として保存されます。

4

1 に答える 1

2

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

于 2013-02-05T01:12:33.390 に答える