我已经在我的数据库中存储了几张图像,现在我正在尝试检索它们。我的脚本的设置方式是一个用户可以选择一些信息和图像来配合它。因此,下面的代码显示了图像如何与价格、汽车和详细信息一起显示。目前图像未显示,我在菱形错误中得到其中一个问号。有任何想法吗?
数据库中的图像存储为 BLOB、MIME 类型的 image/jpeg
form method="post" action="booked.php">
<table>
<?php while($row=mysql_fetch_assoc($result)) { ?>
<tr>
Images: <img style="width: 130px; height: 100px" alt="<?php echo $row['car']; ?>" src="image/<?php echo $row['img']; ?>" /></td>
Car: <input type="text" name="car" value="<?php echo $row['car']; ?>" readonly>
Details: <input type="text" name="details" value="<?php echo $row['details']; ?>" readonly>
Price: <input type="text" name="price" value="<?php echo $row['price']; ?>" readonly>
<input type="radio" name="selected_car" value="<?php echo $row['car']; ?>" /><br>
<br /><br /><br />
</tr>
<?php } ?>
</table>