I need help. Please, I have a service that I have no control over that shows me formatted data Json
echo print_r( $data);
Array
(
[0] => Array
(
[user] => one
)
[1] => Array
(
[user] => two
)
[2] => Array
(
[user] => three
)
)
I want to get the data
one
two
three
How can I do that?
Thank You ,