我在尝试在我的商店表中显示 ID:2 处的图像时遇到了一点麻烦......
这就是我想出的(ps 我设置 $id = 2 的原因是因为我计划将此作为一个循环,我将在其中增加该值以打印其他图像)
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
</head>
<body>
<?php
mysql_connect ...
mysql_select_db ...
$id = 2;
$image = mysql_query("SELECT * FROM store WHERE id=$id");
$image = mysql_fetch_assoc($image);
$image = $image['image'];
echo $image;
?>
</body>
</html>