gpt4 book ai didi

php - 如何在 php 中动态地将图像从 mysql 数据库插入到 jquery slider 中

转载 作者:行者123 更新时间:2023-11-29 00:33:49 25 4
gpt4 key购买 nike

我编写了一个页面,以列表样式显示图像,并添加了一个 jquery slider 。但是,我需要帮助的是让 jquery slider 将其识别为图像列表,以便 slider 可以工作。任何帮助将不胜感激。

下面是我的代码:

<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>

最佳答案

试试这段代码

 <ul>
<?php
$directory = "data/uploads/homegallery/";
if (glob($directory . "*") != false)
{
$filecount = count(glob($directory . "*"));
}
else
{
}
$files_index = glob("data/uploads/"."home"."gallery/*.*");
for ($i=0; $i<$filecount; $i++)
{
$num2 = $files_index[$i];
?>
<li><img src="<?php echo $num2;?>" width="650" height="276" alt="" /> <?</li>
}?>
</ul>

关于php - 如何在 php 中动态地将图像从 mysql 数据库插入到 jquery slider 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15299349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com