Thanks to stackoverflow, I was able to find a solution to get a profile name and picture based on Facebook ID:
<?php
$people = array("4"=>"PISTACHE");
$json = file_get_contents('https://graph.facebook.com/?ids=4&fields=id,name,picture');
$json = json_decode($json);
foreach($json as $key=>$person){
echo '<div class="fb_bin">';
echo '<div class="fb_tit">';
echo $people[$person->id];
echo '</div>';
echo '<div class="fb_img"><img width="32px" height="32px" src="'.$person->picture.'" alt="'.$person->name.'" />';
echo '</div>';
echo '<div class="fb_txt">is the favorite flavor of<br />';
echo '<div class="fb_nam">';
echo $person->name;
echo '</div>';
echo '</div>';
echo '</div>';
}
?>
After Facebook's update, it stopped working. And I believe it's due to how the profile's picture is fetch because when I remove:
src="'.$person->picture.'"
It works, but without a picture. Can anyone help me update the above code? Thanks in advance for your help.