i am working on a cakephp 2.x and i am sending data from android to my webapp in a json fromat
i am getting the data in my $data variable when i print_r the data
Array (
[sms] => [[+16063934284, hello, 1, 1372671157000]]
)
i want to access each element of this array or want to save each element in a seperate variable.. for example i want to do something like this
$number = ['sms'][0]
sorry i am week in arrays so dont how can i do this