How do I use the JSON_encode function with mysql query results, do I need to iterate through the rows or can I just apply it to the entire results object?
|
|||||||||||||||||||||
|
|
http://www.php.net/mysql_query says " http://www.php.net/json_encode says it can encode any value "except a resource". You need to iterate through and collect the database results in an array, then |
|||||||
|
|
Try this, this will create your object properly
|
|||
|
|
|
Thanks this helped me a lot. My code:
|
|||
|
|
If i try above given answer solution in table where more than one row it gives me json of only last row. For this i try below code:
|
||||
|
|
The above will not work, in my experience, before you name the root-element in the array to something, I have not been able to access anything in the final json before that.
That should do the trick! Pär |
|||
|
|
|
I found this blog-post very useful: Create a Basic Web Service Using PHP, MySQL, XML, and JSON |
|||
|
|
|
My simple fix to stop it putting speech marks around numeric values...
|
|||
|
|
|
Sorry, this is extremely long after the question, but:
Just basically:
|
||||
|
|
|
One more option using FOR loop:
The only disadvantage is that loop for is slower then e.g. while or especially foreach |
|||
|
|
|
|||
|
|

