Skip to content
Advertisement

how to fix this php json response?

I get this result from my PHP:

{“risultato”:”1″,”ris”:[{“pda”:”763,41″,”num1″:”86,86″,”num2″:”21,18″,”num3″:”178603,201535″}]}

What I need to do if I want to return the result like this instead?

{“risultato”:”1″,”ris”:[{“pda”:”763″,”num1″:”86″,”num2″:”21″,”num3″:”178603″},{“pda”:”41″,”num1″:”86″,”num2″:”18″,”num3″:”201535″}]}

Here is my PHP code:

JavaScript

Advertisement

Answer

I am SURE there is a Mysql approach to your problem, and therefore, definitely, any other direction is not the best idea. But still, I prefer a PHP snippet to get your desired response.

Let’s say you have got the $result variable exactly as like the way you showed in your question. Here is what I came up with:

JavaScript

The result will be:

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement