Example print_r($myarray)
Array
(
    [0] => Array
    (
        [id] => 6578765
        [name] => John Smith
        [first_name] => John
        [last_name] => Smith
        [link] => http://www.example.com
        [gender] => male
        [email] => email@example.com
        [timezone] => 8
        [updated_time] => 2010-12-07T21:02:21+0000
    )
)
Question, how to get the $myarray in single value like:
echo $myarray['email'];  will show email@example.com
 
     
     
     
     
     
     
     
     
     
    