通過排序查詢出分類
資料庫
create table `infinite_classify1` (
`id` smallint(5) unsigned not null auto_increment,
`catpath` varchar(100) not null,
`title` varchar(100) not null,
primary key (`id`)
) engine=innodb auto_increment=7 default charset=utf8;
資料庫概覽
程式**
<?php
header("content-type:text/html;charset=utf-8");
mysql_connect('localhost','root','910729') or die('鏈結資料庫失敗');
mysql_set_charset('utf8');//設定mysql客戶機(php)與mysql伺服器之間通訊的編碼
mysql_select_db('test');
$sql="select id,concat(catpath,'-',id) as abspath,title from infinite_classify1 order by abspath,id";
$result = mysql_query($sql);
//$arr=array();
//$i=0;
//while ($val=mysql_fetch_assoc($result))
while ($row=mysql_fetch_assoc($result))
echo '';
print_r($arr);
php無限極分類
無限級分類 param1 array categories,要分類的陣列 param2 int stop id 不需要查詢子分類的id param3 int parent id 0,要查詢父分類id 欄位名稱 param4 int level 0,當前商品分類所屬的層級 根據level計算縮排的距離...
PHP無限極分類
function gentree5 items function gentree7 items items array 1 array id 1,pid 0,name 江西省 2 array id 2,pid 0,name 黑龍江省 3 array id 3,pid 1,name 南昌市 4 arr...
PHP無限極分類
無限極分類.html 本文部落格部分內容是上述網上內容搬運過來的。無限極分類在web 中應用很多,比如無限極選單,無限極資料夾展開。因為最近的專案中有用到樹的結構,其實就是無限極選單的儲存。在某次面試中也有提及,所以這裡集合上述網上的資料總結一下。使用場景 1 需要獲取所有的節點,也就是無限極選單的...