MySqlに2つのテーブルがあります
セクション
ID Name
=====================
1 Section1
2 Section2
カテゴリー
ID SectionID Name
=========================================
1 1 Category1
2 1 Category2
3 2 Category3
これは私が今持っているものです:
$sql_section = "select * from section";<br>
$sql_category = "select * from category";<br>
$result_section = mysql_query($sql_section) or die("Could not execute query.");
$result_category = mysql_query($sql_category) or die("Could not execute query.");
echo json_encode(???????);
そして、次のような結果を得るために、JSONをPHPでエンコードしたいと思います。
{sections:[
{sectionName: "Section1", categoryList: [{categoryName: "category1"},
{categoryName: "category2"}]},
{sectionName: "Section1", categoryList: [{categoryName: "category3"}]}<br>
]}
このような配列をどのように設計できるかについての手がかりはありますか?