如果图像路径存储在数据库

时间:2016-10-14 06:33:41

标签: php mysql

enter image description here for output please see the image

我有三个图像路径存储在我的数据库中,我想获取所有这些图像。带样式 请帮我 提前谢谢

我正在使用此代码但它只显示第一张图片

<html>
<body>
<?php
$servername = "localhost";
$username = "root";
$password = "";
$db="uni";
// Create connection
$conn = new mysqli($servername, $username, $password,$db);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 
$result = mysqli_query($conn,("SELECT * FROM upload_img"));
while($row = mysqli_fetch_array($result,MYSQLI_ASSOC))
{
echo "<img src='".$row['img_name']."' />";
echo "<br />";
}
?> 
</body>
</html>

1 个答案:

答案 0 :(得分:1)

我认为问题可能是使用img_name而不是img_path作为图片的来源,但除此之外,您要从Object Orientated mysqli连接开始,但切换到{ {1}}样式来运行查询等。

procedural