jquery スライダーが追加されたリスト スタイルで画像を表示するページを作成しました。ただし、jquery スライダーがそれをイメージのリストとして認識して、スライダーが機能できるようにするために、私が助けを必要としています。どんな助けでも大歓迎です。
以下は私のコードです:
<div id="slideshow">
<ul class="slides">
<?php
$target = "admin/photogallery/";
$getImages = mysql_query("SELECT * FROM photogallery");
if(!$getImages) die("Cannot execute query. " . mysql_error());
$target = "admin/photogallery/";
while($row = mysql_fetch_array($getImages)){
if (file_exists($target)) {
print '"<li><img src="http://localhost/crystalvirgins/admin/photogallery/'.$row_rsphotogallery['photo'].'" border="0" width="702" alt="'.$row_rsphotogallery['description'].'" /></li>"
<div class="clear_3"></div>';
$i++;
}
}?>
</ul>
<span class="arrow previous"></span>
<span class="arrow next"></span>
</div>