BLOB 形式で画像を格納する Products_Images テーブルがあります。「すべての製品を表示」ページにすべての画像と製品の詳細を表示したいと考えています。このタスクを達成するために、次のプログラムを作成しましたが、目的の出力が得られません。よろしければご確認ください。
ありがとう。
<?php
include 'connect.php';
$query= "select distinct product_id, image from product_images";
$query_run= mysql_query($query);
while ($query_fetch= mysql_fetch_assoc($query_run))
{
echo '</br>';
echo $query_fetch['image'];
}
header("Content-type: image/jpeg");
?>
画像の表示
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<br />
<img src="all_images.php" alt="Image" width="50" height="50" />
<body>
</body>
</html>