排列成表格,每行有5个单元格 [英] Array into a table with 5 cells in each row

查看:96
本文介绍了排列成表格,每行有5个单元格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将数组中的每个项目放到一个表中,每行有5个单元格或5列,而对有多少行没有限制.

How can I put each item in an array into a table with 5 cells in each row or 5 columns and no limit on how many rows there are.

这是我的代码:

if (mysql_num_rows($badgedata) <= 0)
{
  $badge = "I have no badges =(";
}
else
{
  // Sets the array for the badges
  while($row = mysql_fetch_array($badgedata))
  {
    $badges[$row['badge_id']] = $row;
  }
  echo "<table><tbody>";
  // Displays the badges in the array
  foreach($badges as $badge => $id)
  {
    // I need the table here
    echo "<img src=\"http://habbome.com/r63/c_images/album1584/$badge.gif\" />";
  }
}

推荐答案

您只需要在每五个单元格之前/之后回显<tr></tr>即可:

You just need to echo <tr> and </tr>'s before/after every fifth cell:

$field = 0; // init field counter
echo "<table><tbody>";
// Displays the badges in the array
foreach($badges as $badge => $id)
{
    if ($field % 5 == 0) echo '<tr>'; // start line before field 0 .. 5 .. 10 etc.
    echo "<td><img src=\"http://habbome.com/r63/c_images/album1584/$badge.gif\" /></td>"; // output as table cell
    if ($field % 5 == 4) echo '</tr>'; // end line alter field 4 .. 9 .. 14 etc.
    $field++; // increase field counter
}
if ($field % 5 != 0) echo '</tr>'; // close last line, unless total count was multiple of 5
echo "</tbody></table>";

这篇关于排列成表格,每行有5个单元格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆