2
I have the following one-page JSON return:
{
"0":{
"id_user":"10",
"contente":"45454545454",
"time":"azul",
"nick":"ikeda."
},
"1":{
"id_user":"10",
"contente":"4",
"time":"azul",
"nick":"ikeda."
},
"2":{
"id_user":"10",
"contente":"5",
"time":"azul",
"nick":"ikeda."
},
"3":{
"id_user":"10",
"contente":"45",
"time":"azul",
"nick":"ikeda."
},
"4":{
"id_user":"10",
"contente":"44",
"time":"azul",
"nick":"ikeda."
},
"status":"success",
"msgs":5
}
They are dynamic returns, that is, sometimes they can come 1 or times 20, so I need to be able to take all the indices of each "array", and take the data of the "sub-arrays"
It will always come in sequence 0, 1, 2...?
– Sam
yes. always in that sequence
– Vitor Leite