我编写了一个页面,该页面以列表样式显示图像,并添加了一个 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>