这是我到目前为止的标记:
<?php
$categories_query = tep_db_query("select c.categories_id, cd.categories_name, c.categories_image, c.parent_id, c.sort_order, c.date_added, c.last_modified from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = cd.categories_id order by c.sort_order ASC");
while ($categories = tep_db_fetch_array($categories_query)){
echo '<tr class="dataTableRow">
<td class="dataTableContent">' . $categories ['categories_name'] . '</td>';
?>
<td class="dataTableContent"></td>
<?php
echo '</tr>';
}
?>
这会在页面上显示所有类别和子类别,但没有顺序,我需要的是子类别显示在主类别下。我有一些关于我将如何做的线索,sort_order
字段和parent_id
字段之间的链接。主分类使用该sort_order
字段作为id,subccat的使用该parent_id
字段对所属的分类进行排序。有任何想法吗?