我有一个名为imageloc的数据库,其中包含一个表ogloc。此表中有一个ID行和一个位置行。位置行具有我要在网站上显示的几张图像的文件路径。我试图将mysqli_fetch_array($ result)分配给一个变量,希望我可以在中使用该变量并重复显示图像,直到显示完所有图像为止。但是,这没有解决,并且我不断收到无法将$ result分配给另一个变量的错误。非常感谢您的反馈。
<?php
$connect = mysqli_connect("localhost", "root", "", "imageloc");
?>
<!DOCTYPE html>
<html>
<head>
<title>image file location displaying</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<br /><br />
<div class="container" style="width:500px;">
<h3 align="center">Insert and Display Images</h3>
<br />
<br />
<table class="table table-bordered">
<tr>
<th>Image</th>
</tr>
<?php
$query = "SELECT * FROM ogloc ORDER BY id DESC";
$result = mysqli_query($connect, $query);
while($row = mysqli_fetch_array($result))
{
echo '
<tr>
<td>
<img src="$result" height="50%" width="100%" class="img-thumnail" />
</td>
</tr>
';
}
?>
</table>
</div>
</body>
</html>
答案 0 :(得分:0)
如果我了解您想正确执行的操作,则应该用于图像源的变量不是$ result,而是$ row,并且取决于您的数据结构,可能是这样的:
while($row = mysqli_fetch_array($result)) {
echo '<tr>
<td>
<img src="' . $row["location"] . '" height="50%" width="100%" class="img-thumnail" />
</td>
</tr>';
}