gpt4 book ai didi

php - 使用 php、ajax 和 jquery 对 mysql 表进行排序

转载 作者:行者123 更新时间:2023-11-29 09:23:16 24 4
gpt4 key购买 nike

好的,这是我正在通过 php、ajax、jquery 和 mysql 构建消息系统的交易,我添加了新消息,并添加了 2 行,现在我想做的是向服务器发送 ajax 请求并接收表的更新版本但已排序那么我该怎么做呢

//这里我添加消息并将其称为消息

function addMsg()
{
//alert(post);
$.get("db.php",$('form').serialize(),
function(data){
getMsg(data);},"html");
}

函数 getMsg(数据) { 警报(数据);
$("#t1").append(数据);}//php

".""."".$row["col"]."".$row["col"]."".$row["col"].""; }?>

//现在进行排序//javascript

function sort()
{
$.ajax({
url: "sort.php",
dataType: "text",
success: function(data){
$("t1").text(data);
}

});

}

//php

$result = mysql_query("SELECT * FROM 表 ORDER BY col desc");

            while($row = mysql_fetch_array($result))
{
echo "<tbody><tr><td>"."&#8226;"."</td><td>".$row["col"]."</td><td>".$row["col"]."</td><td></td><td></td><tr><td></td><td colspan='4'>".$row["col"]."</td></tr></tbody>";
}

?>

最佳答案

执行 SELECT 时使用 ORDER BY。检查这个:http://dev.mysql.com/doc/refman/5.0/en/sorting-rows.html

关于php - 使用 php、ajax 和 jquery 对 mysql 表进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/743932/

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