Code:
<?php
if(!isset($_SESSION['user']))
{
//Application Configurations
$app_id = "138531456298185";
$app_secret = "361c5059eee21e3dde045d5e1a9a7ef4";
$site_url = "http://sas98.user.srcf.net/socialexchange";
try{
include_once "src/facebook.php";
}catch(Exception $e){
error_log($e);
}
// Create our application instance
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
));
// Get User ID
$user = $facebook->getUser();
// We may or may not have this data based
// on whether the user is logged in.
// If we have a $user id here, it means we know
// the user is logged into
// Facebook, but we donĂt know if the access token is valid. An access
// token is invalid if the user logged out of Facebook.
//print_r($user);
print_r($user); // THIS RETURNS 0 (SEE LINK)
echo "<br>";
if($user){
// Get logout URL
$logoutUrl = $facebook->getLogoutUrl();
}else{
// Get login URL
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'read_stream, publish_stream, email, user_about_me',
'redirect_uri' => $site_url,
));
}
echo $loginUrl;
if($user){
try{
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
//Connecting to the database. You would need to make the required changes in the common.php file
//In the common.php file you would need to add your Hostname, username, password and database name!
mysqlc();
$name = GetSQLValueString($user_profile['name'], "text");
$email = GetSQLValueString($user_profile['email'], "text");
$gender = GetSQLValueString($user_profile['gender'], "text");
$bio = GetSQLValueString($user_profile['bio'], "text");
$query = sprintf("SELECT * FROM newmember WHERE email = %s",$email);
$res = mysql_query($query) or die('Query failed: ' . mysql_error() . "<br />\n$sql");
if(mysql_num_rows($res) == 0)
{
$iquery = sprintf("INSERT INTO newmember values('',%s,%s,%s,%s,'yes')",$name,$email,$gender,$bio);
$ires = mysql_query($iquery) or die('Query failed: ' . mysql_error() . "<br />\n$sql");
$_SESSION['user'] = $user_profile['email'];
$_SESSION['id'] = $user_profile['id'];
}
else
{
$row = mysql_fetch_array($res);
$_SESSION['user'] = $row['email'];
$_SESSION['id'] = $user_profile['id'];
}
}catch(FacebookApiException $e){
error_log($e);
$user = NULL;
}
}
}
?>
<?php if(isset($_SESSION['id'])) { ?>
<img src="https://graph.facebook.com/<?php echo $_SESSION['id']; ?>/picture?type=large"/>
<?php } ?>
<?php if(!isset($_SESSION['user'])) { ?>
<div id="f-connect-button"><a href='<?php echo $loginUrl ?>'><img src="images/f-connect.png" alt="Connect to your Facebook Account"/></a></div>
<?php } else { ?>
<?php
mysqlc();
$email = GetSQLValueString($_SESSION['user'], "text");
$query = sprintf("SELECT * FROM newmember WHERE email = %s",$email);
$res = mysql_query($query) or die('Query failed: ' . mysql_error() . "<br />\n$sql");
$row = mysql_fetch_array($res);
?> </div>
<div style="float:left; margin-left:20px;"> <h1><?php echo($row['name']);?></h1>
<div class="profile-info"></br>
<?php
echo "<b> GENDER : </b>" . $row['gender'];
echo "<br/><b> EMAIL : </b>" . $row['email'];
if($row['bio'] != "")
echo "<br/><b> BIO : </b>" . $row['bio'];
else
echo "<br/><b> BIO : </b>You have probably not specified your About Me on Facebook! Specifying you might help you get more friends";
?>
</div><div class="clr"></div>
<?php } ?> </div>
The problem is that $user returns 0 here, which puts it in a sort of loop where, afer authenticating, the connect and login buttons can't be replaced by info on the user.
Any idea why $user can't be established?
Please ask if more context is required.