I am trying to create a Facebook login/logout system using PHP SDK.
The Login is working fine..the login link changes to logout link after I enter fb email id and password.
But when I click on logout, it is not changing to login link. What should I do ?? Plz help me...
$user = $facebook->getUser();
if ($user) {
try {
$user_profile = $facebook->api('/me');
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl();
}
<body>
<?php if ($user): ?>
<a href="<?php echo $logoutUrl; ?>">Logout</a>
<?php else: ?>
<a href="<?php echo $loginUrl; ?>">Login with Facebook</a>
<?php endif ?>
</body>
$useris set and what values that it holds. Can you check if it is null or not? – Necromnius Nov 5 '12 at 5:29