Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am testing using facebook registration on a new site of mine. I am trying to set a redirect up using PHP before the registration page loads; in it I check to see if a UID exists and matches one in my registration database - and if so initiate a session and redirect them.

The relevant code I am using at the top is:

 require_once("php/fb/facebook.php");

  $facebook = new Facebook(array(
  'appId'  => 'xxxxxxxxxxxxxxxxxx',
  'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxx',
));

 $uid = $facebook->getUser();
mysql_connect(....)
if ($uid != "0") 
{$qry="SELECT * FROM users WHERE fbid='$uid'";
    $result=mysql_query($qry);
 $row=mysql_fetch_array($result); $test=mysql_num_rows($result);

If ($test=='1') $_SESSION['username']=$row['Email']; header('Location:mhome.php');
 }
?>

When I first visit the site, it always returns '0' (and I have it echoing next to the registration form to be sure). If I hit refresh, the redirect works.

Any ideas why that is and what is the best way to fix it?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.