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 protected] [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 protected]
$myarrayfrom this array how do I get the output forfirst_name,genderor etc.