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

时间:2009-04-13 13:49:53

标签: php mysql sorting

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

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

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

function getMsg(data)         {             警报(数据);
            $( “#T1”)追加(数据)。 } // PHP

”。 “ ”$行。 “$行”,“[ ”栏“]。 ”“ $行[ ”栏“]”[ “栏”]。 “”;        } ?>

//现在进行排序 // java描述

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

        });

    }

// PHP     

$ result = mysql_query(“SELECT * FROM table 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>"; 
           }

&GT;

1 个答案:

答案 0 :(得分:2)

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