Приведенный ниже код создает таблицу, как показано на прилагаемом рисунке.Мне нужно отредактировать код так, чтобы вместо «Yay!» В столбце «#» отображался номер строки (начиная со строки 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](https://i.stack.imgur.com/eUtu8.png)