In my database I have facebook ID-s of users of my App. Now I need to retrieve these users in PHP. I use this:
$json=file_get_contents("http://graph.facebook.com/UID");
$fdata=json_decode($json);
$fname=$fdata->name;
echo '<img src="https://graph.facebook.com/'.$row['uid'].'/picture">';
echo '$fname';
I need to put this code into WHILE.. I already retrieve users photos using UID, but I also need names. As I understand I should write something Like this:
while($row = mysql_fetch_array($result)){
$json=file_get_contents("http://graph.facebook.com/$row['uid']");
$fdata=json_decode($json);
$fname=$fdata->name;
echo $row['uid'];
echo '<img src="https://graph.facebook.com/'.$row['uid'].'/picture">';
echo "<br>";
}
But it doesn't work. What I'm doing wrong??
Thanks in advance!