doujia2463 2014-03-21 18:02
浏览 74
已采纳

php - 从数据库中显示多个图像

I am trying to display images (and other data connected to them, e.g. titles) in a table. The filenames of the images are stored in my database as imgname, but the problem is that there is only one image that is being displayed.
Here is the code I use. What should I change?

mysql_select_db($database_connection, $connection);
$query_img = "SELECT imgname FROM img ORDER BY imgname";
$img = mysql_query($query_img, $connection) or die(mysql_error());
$row_img = mysql_fetch_assoc($img);
$totalRows_img = mysql_num_rows($img);

Table

<ul>
    <li>
        <img src="images/<?php echo $row_img['imgname']; ?>">
        <h3><?php echo $row_title['title']; ?></h3>
        <p><?php echo $row_description['des']; ?></p>
    </li>
    <li>
        <img src="images/<?php echo $row_img['imgname']; ?>">
        <h3><?php echo $row_title['title']; ?></h3>
        <p><?php echo $row_description['des']; ?></p>
    </li>
    <li>
        <img src="images/<?php echo $row_img['imgname']; ?>">
        <h3><?php echo $row_title['title']; ?></h3>
        <p><?php echo $row_description['des']; ?></p>
    </li>
</ul>


Since I use a simmilar code for the titles and descriptions, I have the same problem with them.

  • 写回答

4条回答 默认 最新

  • dqz86173 2014-03-21 18:06
    关注
    mysql_select_db($database_connection, $connection);
    $query_img = "SELECT imgname FROM img ORDER BY imgname";
    $img = mysql_query($query_img, $connection) or die(mysql_error());
    <ul>
        <?php
            while($row_img = mysql_fetch_assoc($img)) {
        ?>
            <li>
                <img src="images/<?php echo $row_img['imgname']; ?>">
                <h3><?php echo $row_title['title']; ?></h3>
                <p><?php echo $row_description['des']; ?></p>
            </li>
        <?php
        }
        ?>   
    
    </ul>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!