I have 2 tables in MySql
Section
ID       Name
=====================
1        Section1
2        Section2
Category
ID        SectionID     Name
=========================================
1           1           Category1
2           1           Category2
3           2           Category3
This is what I have now:
$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(???????);
And I would like to Encode JSON in PHP to get the result that looks like this:
{sections:[
{sectionName: "Section1", categoryList: [{categoryName: "category1"},
              {categoryName: "category2"}]},
{sectionName: "Section1", categoryList: [{categoryName: "category3"}]}<br>
]}
Any clue of how can I design an array that looks like this?
 
     
     
     
    