MySqlに2つのテーブルがあります
セクション
ID Name
=====================
1 Section1
2 Section2
カテゴリー
ID SectionID Name
=========================================
1 1 Category1
2 1 Category2
3 2 Category3
次のような結果を得るために PHP から JSON をデコードするにはどうすればよいですか:
{sections:[
{sectionName: "Section1", categoryList: [{categoryName: "category1"},{categoryName: "category2"}]},
{sectionName : "Section1", categoryList: [{categoryName: "category3"}]}
]}
これは私が今持っているものです:
$sql_section = "select * from section";
$sql_category = "select * カテゴリから";
助言がありますか?ありがとう。