使用php mysql

时间:2016-07-05 06:58:29

标签: php jquery mysql

我有一个名为hotel_booking的数据库,它包含名为imglinks的字段,用于存储图像的链接,我只能在网站中显示单个图像。我想要显示各个酒店图像的幻灯片。

 <tr>
    <th>NAME OF HOTELS</th>
    <th>CATEGORY</th>
     <th>DESCRIPTION</th>
    <th>ADDRESS</th>
    <th>GALLERY</th>
</tr>
<?php
    while($row=mysql_fetch_array($query))
    {
        $f1=$row['name'];
        $f2=$row['category'];
        $f3=$row['description'];
        $f4=$row['address'];

?>
<tr>
    <td><?php echo $f1 ?></td>
    <td><?php echo $f2 ?></td>
    <td><?php echo $f3 ?></td>
    <td><?php echo $f4 ?></td>
    <td><img src="<?php echo $row['imglinks'];?>" height="200" width="55"></td>

link to image of what i want to achieve

1 个答案:

答案 0 :(得分:0)

您可以使用bootstrap通过几行代码轻松实现此目的。

http://getbootstrap.com/javascript/#carousel

通过此链接,如果有任何问题,请告诉我:))