찾다

 >  Q&A  >  본문

php 同一個值排列一起?

$supportwords = mysql_query("SELECT * FROM `support`ORDER BY `sort` ASC)

想問一下
每個數據都有一個 type 字段(當作是分類)
我如何讓他排列sort同時,能夠把若是type一樣的都擺在一起?
就是顯示出來不會每個 type都不太一樣


phpcn_u699phpcn_u6992841일 전829

모든 응답(2)나는 대답할 것이다

  • 数据分析师

    数据分析师2017-10-01 00:26:56

    php 같은 값을 함께 배열하나요? -PHP 중국사이트 Q&A-php 같은 값이 같이 배열되어 있다? -PHP 중국어 홈페이지 Q&A

    꼭 보고 배워보세요.

    회신하다
    0
  • 巴扎黑

    巴扎黑2017-02-20 13:59:11

    伪代码:

    $type = '你的类型';
    $supportwords = mysql_query("SELECT * FROM `support` where type='$type' ORDER BY `sort` ASC");


    회신하다
    0
  • 취소회신하다