我已使用逗号分隔的unique-Id将多个图像插入到表中,现在我想从数据库中获取这些图像并单独显示,
在数据库中,图像按类别存储,每个类别具有以下格式的图像。
142375784eb96ef5671468328855.jpg,133305784eb96ef9f01468328855.jpg,224995784eb96efcb31468328855.jpg
我尝试过以下代码
<?php
$query = "SELECT * FROM book_post";
$res = mysqli_query($con, $query);
if(mysqli_num_rows($res) > 0)
{
while($row = mysqli_fetch_assoc($res))
{
$temp = array();
$row['book_image']=trim($row['book_image'], '/,');
$temp = explode(',', $row['book_image']);
$temp = array_filter($temp);
foreach($temp as $image){
$images[]="images/book/".$row['book_category']."/".trim( str_replace(array('[',']') ,"" ,$image ) );
}
?>
<div class="col-sm-4">
<div class="product-image-wrapper">
<div class="single-products">
<div class="productinfo text-center">
<img src="<?php echo $images[0];?>" alt="" />
<h2>₹<?php echo $row['book_price'];?></h2>
<p><?php echo $row['book_name'];?></p>
</div>
<div class="product-overlay">
<div class="overlay-content">
<h2><?php echo $row['book_name'];?></h2>
<p>Author: <?php echo $row['book_author'];?></p>
</div>
</div>
</div>
</div>
</div>
<?php }
}
?>
问题在于,它获取第一批图像并在每个类别中显示。我想按类别显示图像
帮帮我们......
答案 0 :(得分:0)
您忘了re-initialize
image array
所以改变以下
foreach($temp as $image){
$images[]="images/book/".$row['book_category']."/".trim( str_replace(array('[',']') ,"" ,$image ) );
}
向
$images = array();
foreach($temp as $image){
$images[]="images/book/".$row['book_category']."/".trim( str_replace(array('[',']') ,"" ,$image ) );
}
因此,您将获得第一张类别/帖子明智的图像。