Am getting json results in php as follows:
{ "dataset": [{"seriesname": "Soap","data": [ { "value": "90000" }]},{"seriesname": "Dummy","data": [ { "value": "70000" }]} ]}
Pls help me in making pretty and removing the first and last curly braces
I want the result in this way:
"dataset": [{"seriesname": "Soap","data": [ { "value": "90000" }]},{"seriesname": "Dummy","data": [ { "value": "70000" }]} ]