简体   繁体   中英

how to display multiple images in php from database using slideshow

I have images that have been uploaded from a database but I want the images to be in a slideshow my code :

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM