私のテーブルは次のように見えます
ID | Parent | Name | Level
1 | 0 | Cat1 | 0
2 | 1 | SubCat1 | 1
3 | 0 | Cat2 | 0
4 | 3 | SubCat2 | 1
5 | 4 | SubCat3 | 2
6 | 3 | SubCat4 | 3
次の順序でデータを表示する必要があります。
Cat1
SubCat1
Cat2
Subcat2
SubCat3
SubCat4
再帰関数でうまく実行できますが、現在の要件は再帰関数なしで行うことです。親切に助けてください、私もレベルフィールドとかなり混乱しています。
データベースから取得するコード:
class Sitemap
{
public static function getTopCategories()
{
return self::getCategories('parent=0');
}
public static function getCategories($where='')
{
if ($where) $where = " WHERE $where";
$result = mysql_query("SELECT * FROM sitemap $where");
$categories = array();
//while ($category = mysql_fetch_object($result, 'Category'))
while ($category = mysql_fetch_array($result)){
$my_id = $category['id'];
$category['children'] = Sitemap::getCategories("parent = $my_id");
$categories[] = $category;
}
mysql_free_result($result);
return $categories;
}
}
表示するコード (Smarty を使用):
{foreach from=$sitemap item=c name=sitemap}
{if $c.parent ==0 }
<li><h2><a title="{$c.name}" href="{$c.url}">{$c.name}</a></h2><ul>
{foreach item=d from=$c.children name=sitemap}
<li><a title="{$d.name}" href="{$d.url}">{$d.name}</a></li>
{/foreach}
{else}
<li><h2><a title="{$c.name}" href="{$c.url}">{$c.name}</a></h2><ul>
{/if}
</ul>
</li>
{/foreach}