PHP表行编号

时间:2018-10-15 22:02:00

标签: php html-table row

下面的代码将生成一个表格,如下图所示。我需要编辑代码,以便“#”列显示行号(从第1行开始)而不是“是!”

<table class="table">
<thead>
<tr>
  <th scope="col">#</th>
  <th scope="col">Yup'ik</th>
  <th scope="col">English</th>
  <th scope="col">Audio</th>
</tr>
</thead>
<tbody>
<?php
  #cycle through rows
  foreach ($files as $file) {
    print("<tr>");
    print("<th scope='row'>Yay!</th>”);

    #cycle through columns
     print("<td>$file[0]</td>");
     print("<td>$file[1]</td>");
     print("<td><a href='audio/$file[2]'>$file[2]</a></td>");
     print("</tr>");
  }
?>
</tbody>
</table>

Table

1 个答案:

答案 0 :(得分:-1)

只需添加一个从1点开始凝视的计数器$ counter = 1; 打印计数器而不是“ Yay”,然后在foreach循环中将其递增:$ counter ++;