サブカテゴリをカテゴリ内にグループ化したい。サブカテゴリには、次のような要素をいくつでも含めることができます。
出力:
category #1
item 1
item 2
item 3
category #2
item 1
item 2
item 3
item 4
item 5
私の最初の計画は、次のような多次元配列を使用することです。
$categories = array(
'cateogy_name_1' => array(
1 => 'item_1',
2 => 'item_2',
...
),
'cateogy_name_2' => array(
1 => 'item_1',
2 => 'item_2',
3 => 'item_3',
4 => 'item_4',
5 => 'item_5',
...
),
....
);
これまでの私のコード...
$categories = array();
$result= mysql_query("SELECT category_id, product_name FROM `table` GROUP BY
`catagory_id` ORDER BY `catagory_id`"); //retreive all categories and sub-categories
while($row = mysql_fetch_array($result))
{
//Get Categories and create arrays inside a single array
//I'm stuck here, not sure how to initialize the multi-dimensional array
}
foreach // Put all subcategories within the correct categories
// I'm stuck here. How would I get the subcategories and put
// them into the correct category?
さて、私の質問は次のとおりです。
カテゴリを選択して、多次元配列内の独自の配列に配置するにはどうすればよいですか?
次に、サブカテゴリを適切なカテゴリ配列内に配置するにはどうすればよいですか?
最後に、任意の数のサブカテゴリを持つことができる多次元配列全体を印刷するにはどうすればよいですか?