dozug64282 2016-02-16 17:44
浏览 39
已采纳

如何使用PHP回显基于MySQL数据库的动态html片段?

I'm trying to create an image gallery with a for loop iterated by a counter of database rows. To make it more clear: for each row in the table, get only the id(primary index) number and the image link from the server (not all the info in the row). With that information, echo an HTML image tag with the link inside the 'src=' and the id inside the 'alt='.

Two problems here:
1- the id number of the first row isn't zero.
2- I don't have a clue on how to get the total number of rows and to fetch only those two informations (id and img source).

That way, I could subtract the total number of rows minus the id number of the first row and using it to put an end on the loop.

So how to echo this dynamic html snippet based on my databse with PHP?

My code:

<?php

$link = mysqli_connect('localhost','user','pass','db');
$result = mysqli_query($link, "SELECT * FROM `table`");
$rows = mysqli_num_rows($result);

/* free result set */
mysqli_free_result($result);

$caption = mysqli_query($link, "SELECT ");

for($i=0; $i < $rows; $i++) {
    echo "<img src='$imageURL' alt='$idNumber'>";
}

?>
  • 写回答

3条回答 默认 最新

  • dongshen9058 2016-02-16 18:48
    关注

    This is a really easy task.

    First we fetch the data from the database using mysqli_query to do the query.

    Then we use mysqli_fetch_array to get an array so then we can loop through it and echo each item.

    After that, we mysqli_num_rows to get the total number of rows returned and increment it by 1 so it is not zero.

    NOTE: Since you are going to increment the id to avoid getting a '0', don't to forget to minus '1' if you intend to use that id for some server-side purpose.

    $result = mysqli_query($link, "SELECT * FROM `table`"); //query sql
    $result_array=mysqli_fetch_array($result, MYSQLI_ASSOC);//return array from the query
    $count = mysqli_num_rows($result);                      //get numbers of rows received 
    
    foreach($result as $row){ //do a foreach loop which is really simple
        echo "<img src='". $row['img_column_name_from_db'] . "'  alt='" .$row['id_column_name_from_db'] + 1 . "'>"; //echo data from the array, + 1 to "$row['id_column_name_from_db']" so that 'alt=' doesn't start from '0'.
        } 
    echo $count;
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码