I have this Array:
[tracks] => Array
(
[data] => Array
(
[0] => Array
(
[title] => Amiga Da Minha Mulher
[artist] => Array
(
[name] => Seu Jorge
)
)
[1] => Array
(
[title] => Tá Vendo Aquela Lua
[artist] => Array
(
[name] => Exaltasamba
)
)
The number of numbers after ['data']
is the number of songs, or
varies depending on the playlist. I put only two as
example, but in the API link you can see examples with everything.
In "tracks"
has the song list + artist name of each song.
How to list them like this:
01 - My Girlfriend's Friend - Seu Jorge
02 - Seeing That Moon - Exaltasamba
And so it goes ...
I try to do everything, but it always makes mistakes.