On a logged in portion of my site I am trying to allow the user to write some info about themselves. I have a functional, but non-secure login/registration page that I am trying to replace with a simple "log in with facebook" button.
The issue is, once the user logs in with facebook, they can update the info, but they can't access it. The $uid variable contains their unique facebook user ID, the SQL function reads it properly and inserts it into the database, but all the other PHP functions read it as an entirely different number. Is the SQL decoding $uid while the PHP echoes an encrypted version?
The following puts a new piece of info in under the correct facebook ID, then echoes an incorrect facebook ID:
$sql="INSERT INTO Users (ID, Date, Category, Info)
VALUES
($uid, '$myTime', '$category','$info')";
if (!mysql_query($sql, $con))
{
die('Error: ' . mysql_error());
}
echo "Info Saved<br>";
echo " session: " . $_SESSION['uid'] . " PHP uid: " . $uid . " cookie: " . $_COOKIE['uid'];
I can tell the SQL function is working properly because the true ID is stored next to the info in the database and the data is displayed when the user logs in with the non-secure form.
Output:
Info Saved
session: 100005003165914 PHP uid: 100005003165914 cookie: 100005003165914
This happens when I log in with the unsecure form:
Info Saved
session: 2147483647 PHP uid: 2147483647 cookie: 2147483647
