如何使用幻灯片显示来自数据库的php中的多个图像

时间:2019-03-03 03:16:03

标签: php mysql bootstrap-4

我有从数据库上传的图像但我希望这些图像以幻灯片形式显示 我的代码:

while ($row2=mysqli_fetch_array($res2))
        {
          $image=$row2 ['img_name'];
          echo'
                  <td>
                  <img src="../photo/'.$image.'" width="360" height="150">
                  </td>';
        }

1 个答案:

答案 0 :(得分:0)

 <div id="carouselExampleSlidesOnly" class="carousel slide" data-ride="carousel">
 <div class="carousel-inner">
     while ($row2=mysqli_fetch_array($res2))
       {
         $image=$row2 ['img_name'];
         echo'                    
          <div class="carousel-item active">         
                <img src="../photo/'.$image.'" width="360" height="150">                   
           </div> ';
         }
  </div>
</div>