dongmozhui3805 2016-02-16 09:45
浏览 38
已采纳

如何从mysql数据库中的图像创建图像幻灯片

I have a mysqli database and form which allows me to store an id, name and photo. The path of the photo is set to an "images" folder on the server. I have a query which can

SELECT * FROM images WHERE name = $pagetitle.

This works absolutely fine, outside of the javascript slideshow. When i put a php command in the javascript where it is looking for which images to display, the js only shows 1 image, and not ALL images.

Any help would be appreciated, thanks.

The section of the code in question is below...

index.php

            <!-- Image Slide Show Start -->
  <div style="display: flex; justify-content: center;">
  <img align="middle" src="" name="slide" border=0 width=300 height=375>
                
<script>

<?php 
require('dbconnect.php');
$data = mysql_query("SELECT * FROM images WHERE name= '$pagetitle'");
$image = mysql_fetch_array( $data );



?>
//configure the paths of the images, plus corresponding target links
slideshowimages("<?php echo "/images/".$image['photo'] . ""?>")

//configure the speed of the slideshow, in miliseconds
var slideshowspeed=2000

var whichlink=0
var whichimage=0
function slideit(){
if (!document.images)
return
document.images.slide.src=slideimages[whichimage].src
whichlink=whichimage
if (whichimage<slideimages.length-1)
whichimage++
else
whichimage=0
setTimeout("slideit()",slideshowspeed)
}
slideit()


</script> </div><br><br>
                        <!-- Image Slide Show End -->

</div>
  • 写回答

3条回答 默认 最新

  • dseax40600 2016-03-14 14:46
    关注

    Try this:

    $sql = "SELECT * FROM images WHERE name= '$pagetitle'";
    $result = $conn->query($sql);
    
    $directory = '';
    while( $image = $result->fetch_assoc() )
        $directory .= ($directory != '' ? "," : '') . ('"/images/'.$image["photo"] . '"');
    
    
    
    // Check if it was successfull
        if($directory != '') {
    
        // if there are images for this page, run the javascript
        ?><script>
    
    
        //configure the paths of the images, plus corresponding target links            
        slideshowimages(<?php print $directory ?>)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 matlab实现基于主成分变换的图像融合。
  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊