gpt4 book ai didi

php - 如何从数据库中获取结果并在表格中显示排序

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

我正在尝试显示我在我的 Wordpress 插件(下面的代码)中创建的表格中的信息,我可以毫无问题地显示在表格中,但我无法弄清楚如何以某种排序顺序显示,I.E.按行 ID 排序。

<?php

echo "<table class='widefat'>"; // start a table in HTML
echo "<thead>
<tr>
<th>Select</th>
<th>Id</th>
<th>Serial Number</th>
<th>UserID</th>
<th>Owner</th>
<th>Name</th>
<th>AreaCode</th>
<th>Number</th>
<th></th>
</tr>
</thead>
<tfoot>
<tr>
<th>Select</th>
<th>Id</th>
<th>Serial Number</th>
<th>UserID</th>
<th>Owner</th>
<th>Name</th>
<th>Area Code</th>
<th>Number</th>
<th></th>
</tr>
</tfoot>
<tbody>";


$result = $wpdb ->get_results( "SELECT * FROM wp_new_table ");
foreach($result as $row){
echo "<tr><td><input name='ID_selected' type='radio' value='" . $row->id. "' /></td><td>" . $row->id. "</td><td>" . $row->sn. "</td><td>" . $row->userid. " </td><td>" . get_user_display_name($row->userid) ."</td><td>" . $row->name. "</td><td>" . $row->areacode. "</td><td>" . $row->phone. "</td><td>

<a href='" . $_SERVER['REQUEST_URI'] . "&dbviewedit=" . $row->id . "'>View/Edit</a></td></tr>";


}

echo "</tbody></table>";
?>

最佳答案

你必须调整 SQL 请求,因为结果已经未排序

SELECT columnname FROM tablename ORDER BY columnname ASC|DESC

希望这就是你要找的

关于php - 如何从数据库中获取结果并在表格中显示排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19420776/

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