Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();
?>
share|improve this question
php.net/json_encode - check the examples and options, you might find something that suits your needs. – hakre Oct 15 '12 at 13:07
Have your 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:10
Offtopic, but helpful: you should stop using the old mysql_connect and instead switch to mysqli_connect or PDO. – Shomz Oct 15 '12 at 13:15
1  
Please, don't use mysql_* 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 use mysql functions in PHP? – Madara Uchiha Oct 15 '12 at 15:08

closed as too localized by hakre, Baba, Madara Uchiha, tereško, Florent Oct 15 '12 at 16:01

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.