i'm trying to facebook log in form to my web site using facebook php sdk what i noticed is the logout link doesn't really do any thing i don't really know much about php , what i have modified in the facebook.php so far is
require 'src/facebook.php';
$facebook = new Facebook(array(
'appId' => '*************',
'secret' => '******************************',
));
$user = $facebook->getUser();
$loginUrl = $facebook->getLoginUrl();
echo "<a href='$loginUrl'>login</a>" ;
$logoutUrl = $facebook->getLogoutUrl();
echo $loginUrl ;
if($user){
session_start() ;
$_SESSION['user_info'] = $user ;
$_SESSION['user_pro']= $facebook->api('/me');
print_r($_SESSION) ;
}else{
echo 'not logged in ' ;
}
echo "<a href='example.com/logout.php'>log out </a>"
this code works fine on log in and then the log out link should destroy_session and header to my main page it is as simple as this :
<?php
print_r($_SESSION) ;
header('example.com') ;
?>
PROBLEM is with the logout.php page it doesn't detect the session at all , i don't know if this is a facebook api problem or php problem my problem :) , and if any one have a better way to log the user out than using javascript SDK will be appreciated
