gpt4 book ai didi

php - PHP 中特定表下默认对列表进行排序

转载 作者:行者123 更新时间:2023-11-29 11:05:04 25 4
gpt4 key购买 nike

我目前有一个由 PHP 从 MySQL 生成的长列表。它有 3 列,其 HTML 大致如下所示:

<thead>
<tr>
<th style="display:none;">IP</th>
<th>ID</th><th>Status</th>
<th>Selection</th>
</tr>
</thead>
<tbody>
<?php while($a = $ks->fetch(PDO::FETCH_ASSOC)) { ?>
<tr>
<td style="display:none;"><?php echo $a['ip'];?></td>
<td><?php echo $a['id'];?></td>
<td><?php echo getstatus($a['status']);?></td>
<td><input type="checkbox" data-status="<?php echo getstatus($a['status']);?>" onclick="redes(this)" value="<?php echo $a['ip'];?>"></td>
</tr>
<?php }?>

现在,在 TH 文本旁边的每个表格列中都有 2 个箭头(一个向上一个向下),您可以对它们进行相应的排序。我想知道如何在访问页面时默认按 ASC 排序一行?

最佳答案

例如。

<?php
$sort = $_GET['sort'] ?: 'ip';
$sql = 'SELECT ip,status,section FROM tab ORDER BY '. $sort;
$ks = $db->query($sql);

关于php - PHP 中特定表下默认对列表进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41545044/

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