I have the following code within a file named facebook.php:
$user = json_decode(@file_get_contents(
'https://graph.facebook.com/me?access_token=' .
$cookie['access_token']));
on another page i have
require 'facebook.php';
<p>Welcome <?= $user->name ?></p>
This works fine and it displays the name of the user from facebook. (clearly i have a facebook app to allow users to login to my website)
within facebook.php i also have:
$id = $user->id;
$name = $user->name;
$email = $user->email;
mysql_query("INSERT INTO facebook (id, name, email)
VALUES ('$id' , '$name' , '$email')");
This insert does not work (nothing is inserted). However if i change the code to be:
$id ='123';
$name = 'testname';
$email = 'blhalvlvlv';
mysql_query("INSERT INTO facebook (id, name, email)
VALUES ('$id' , '$name' , '$email')");
Then this works and it inserts the data into the table within the database. Why does this not work using the $user->id $user->name and $user->email ?