私はデータベースhotel_bookingを持っています。画像のリンクを格納するimglinksという名前のフィールドがあり、サイト内には1つの画像しか表示できません。私はそれぞれのホテルのイメージのスライドショーを表示したい。php mysqlを使用して画像スライドショーを表示
<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
あなたはjqueryのかbootstarpを試してみましたか? – aniruddh