dongluanguang4774 2014-05-03 14:01
浏览 29
已采纳

如何从数据库中连续显示图像?

I want to retrieve the image from the database and want to display it in a row like if there is 20 images in a database then it should get display in 5 rows containing 4 images in each row... My code is working properly but i am facing problem in image path as i hv stored the image-name in database and image inside admin/uploads folder.... like uploads folder is inside the admin folder... adminfolder/uploadsfolder/file-name

here in my code i am getting problem in tracing the image path.....

I am Facing problem in this line.. // my all images is in admin/uploads folder

echo "<td><img src=\"".$path[$i]."\" height='100'/></td>";

Here is my full code

<?php
mysql_connect('localhost','root','') or die(mysql_error());
mysql_select_db('dogs_db') or die(mysql_error());

$sql = "SELECT file_name FROM dogsinfo";
$res = mysql_query($sql) or die(mysql_error());
echo "<table><tr>";
while($fetch = mysql_fetch_assoc($res)) {
$path[] = $fetch['file_name'];
}

for($i=0;$i<count($path);$i++){

if($i%4 == 0){
echo "</tr>";
}
// I am Facing Problem here ... 
// my all images is in admin/uploads folder

echo "<td><img src=\"".$path[$i]."\" height='100'/></td>";

}
echo "</tr></table>";
?>

Please help me to sort out this....

  • 写回答

1条回答 默认 最新

  • drrog9853 2014-05-03 14:08
    关注

    How are within the admin/uploads folder, you must put in the src of the img tag.

    <?php
    mysql_connect('localhost','root','') or die(mysql_error());
    mysql_select_db('dogs_db') or die(mysql_error());
    
    $sql = "SELECT file_name FROM dogsinfo";
    $res = mysql_query($sql) or die(mysql_error());
    echo "<table><tr>";
    while($fetch = mysql_fetch_assoc($res)) {
    $path[] = $fetch['file_name'];
    }
    
    for($i=0;$i<count($path);$i++){
    
    if($i%4 == 0){
    echo "</tr>";
    }
    // I am Facing Problem here ... 
    // my all images is in admin/uploads folder
    
    echo "<td><img src=\"admin/uploads/".$path[$i]."\" height='100'/></td>";
    
    }
    echo "</tr></table>";
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算