below is my php code please help me understand why I am getting 0 with every json array as an output. I actually want the output in the form of
[array[array{json},{},{},{}] ,[array{json},{},{},{}],[array{json},{},{},{},{}],[array{json},{}],[array{json},{},{}]]
[{"0":"1","subcategoryid":"1"}][{"0":"1","subcategoryid":"1"}, {"0":"2","subcategoryid":"2"}][{"0":"1","subcategoryid":"1"},{"0":"2","subcategoryid":"2"},{"0":"3","subcategoryid":"3"}][{"0":"1","subcategoryid":"1"},{"0":"2","subcategoryid":"2"},{"0":"3","subcategoryid":"3"},{"0":"4","subcategoryid":"4"}]
<?php
mysql_connect("localhost","root","");
mysql_select_db("storemanager");
$rows=mysql_query("SELECT * FROM category ORDER BY 'categoryname'");
while(($numrows=mysql_fetch_assoc($rows))>0)
{
$rows_categoryid=$numrows['categoryid'];
$exloded_rows_categoryid = explode(";" , $rows_categoryid);
foreach($exloded_rows_categoryid as $value2)
{
$subrows = mysql_query("SELECT subcategoryid FROM subcategory WHERE categoryid = ('$value2') ORDER BY ('$rows_categoryid')");
while($subnumrows = mysql_fetch_array($subrows))
{
$rows_subcategoryid[]= $subnumrows;
echo (json_encode($rows_subcategoryid));
}
}
mysql_close();
?>
var_dumped the array before encoding it as JSON? Why are you printing the JSON encoded array in each loop iteration? That would lead to duplicates in the output. I guess you would print it after the loop has finished. – feeela Oct 15 '12 at 13:10mysql_connectand instead switch to mysqli_connect or PDO. – Shomz Oct 15 '12 at 13:15mysql_*functions to write new code. They are no longer maintained and the community has begun deprecation process. See the red box? Instead you should learn about prepared statements and use either PDO or MySQLi. If you can't decide which, this article will help you. If you pick PDO, here is good tutorial. Also see Why shouldn't I usemysqlfunctions in PHP? – Madara Uchiha Oct 15 '12 at 15:08