gpt4 book ai didi

javascript - 枚举每行 HTML 中的数字

转载 作者:行者123 更新时间:2023-12-01 01:34:49 24 4
gpt4 key购买 nike

谁能帮我计算 html 表格的行数吗?我从数据库加载一个表,我需要获取包含行号的列。这将是 ID 之前的一个新列。

if ($result->num_rows > 0) {
echo "<table id='table' class='tablesorter'>
<thead>
<tr>

<th>ID</th>
<th>Fecha (a/m/d) Hora </th>
<th>Valor (Lux)</th>
<th>Ubicacion</th>
<th>Estado</th>
</tr>
</thead><tbody>";

// output data of each row
while($row = $result->fetch_assoc()) {

echo "<tr>

<td>". $row["id"]. "</td>
<td>" . $row["date"]. "</td>
<td>" . $row["value"]. "</td>
<td>" . $row["latitud"]. $row["longitud"]. "</td>
<td>" . $row["Estado"]. "</td>
</tr>";

}
echo "</tbody></table>";
} else {
echo "0 results";
}

$con->close();
?>

</body>
</html>

最佳答案

试试这个。

        <table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Fecha (a/m/d) Hora </th>
<th>Valor (Lux)</th>
<th>Ubicacion</th>
<th>Estado</th>
</tr>
</thead>
<?php $count = 1; ?>
<?php foreach ($rows as $row):?>
<tr>
<td><?= $count ++; ?></td>
<td><?= $row["id"] ?></td>
<td><?= $row["date"] ?></td>
<td><?= $row["value"] ?></td>
<td><?= $row["latitud"] ?></td>

</tr>
<?php endforeach ?>
</table>

关于javascript - 枚举每行 HTML 中的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52921773/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com