php 同一個值排列一起?
phpcn_u699
phpcn_u699 2017-02-20 13:58:42
0
2
823
$supportwords = mysql_query("SELECT * FROM `support`ORDER BY `sort` ASC)

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


phpcn_u699
phpcn_u699

reply all(2)
数据分析师

php Arrange the same value together? -PHP Chinese website Q&A-php The same value is arranged together? -PHP Chinese website Q&A

Let’s take a look and learn.

巴扎黑

伪代码:

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


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template