我想将砌体插入到从 MySQL 数据库中检索图像的 php 表单中。我可以检索图像,但是当我尝试放入砖石时,整个事情根本不起作用。
这是我的代码
$result = mysqli_query($con,"SELECT * FROM img");
while($row = mysqli_fetch_array($result)) {
echo "<script src="/path/to/masonry.pkgd.min.js"></script>"
echo "<div id="container">"
echo "<img class='item' src='" . $row['path'] . "' />";
echo "</div>"
}
mysqli_close($con);
?>