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.

Possible Duplicate:
Unable to save more than 2 records

I am using Facebook Javascript SDK to login and get user info. When I save this data to mysql database it save only 1-2 records only. While I am getting user record every time.

if($user){
                print_r($userInfo);
                $userid = $userInfo[id];
                $username = $userInfo[name];
                $birthday = $userInfo[birthday];
                $birthday = date("Y-m-d", strtotime($birthday));
                $userlocation = $userInfo[location][name];
                $gender = $userInfo[gender];
                $useremail = $userInfo[email];
                $sql = "INSERT INTO users (userid, username, useremail, birthday, location, gender) VALUES ('$userid', '$username', '$useremail', '$birthday', '$userlocation', '$gender')";
                if($result = mysql_query($sql)) {
                    echo "success";
                }
            }

table def for users is :

1   userid  int(20)         No  None          Change      Drop    Browse distinct values     Primary      Unique      Index  Spatial     Fulltext
 2  username    varchar(30) latin1_swedish_ci       No  None          Change      Drop    Browse distinct values      Primary     Unique      Index  Spatial      Fulltext
 3  useremail   varchar(50) latin1_swedish_ci       No  None          Change      Drop    Browse distinct values      Primary     Unique      Index  Spatial      Fulltext
 4  birthday    date            No  None          Change      Drop    Browse distinct values      Primary     Unique      Index  Spatial     Fulltext
 5  location    varchar(30) latin1_swedish_ci       No  None          Change      Drop    Browse distinct values      Primary     Unique      Index  Spatial      Fulltext
 6  gender  varchar(10) latin1_swedish_ci       No  None          Change      Drop    Browse distinct values      Primary     Unique      Index  Spatial      Fulltext

when using PDO :

if($user){
                $host = "internal-db.s130813.gridserver.com";
                $db = "db130813_fbmooz";
                $user = "db130813_adminu";
                $pass = "ansari786";
                $conn = new PDO("mysql:host=$host;dbname=$db",$user,$pass);
                $uid = $userInfo[id];
                $uname = $userInfo[name];
                $sql = "INSERT INTO users (userid,username) VALUES (:uid,:uname)";
                $q = $conn->prepare($sql);
                $q->execute(array(':uid'=>$uid, ':uname'=>$uname));

Still could not be saved

share|improve this question
How many records would you expect to get? – ethrbunny Sep 29 '12 at 11:59
depends upon users it may be upto several hundreds – techansaari Sep 29 '12 at 12:00
So this bit of code is being called repeatedly? I guess Im missing where it should be inserting so many records. – ethrbunny Sep 29 '12 at 12:01
this code will get executed every time a new user login through FB id, I will place a check of fb id in database later on , but at present I am expecting atleast 20-25 records. – techansaari Sep 29 '12 at 12:12
Are you seeing as many values / hits at the 'print_r' line as you would expect but the INSERT isn't being called? Or this bit of code isn't getting called? I guess I don't know if this is a larger code issue or a mysql issue. – ethrbunny Sep 29 '12 at 12:15
show 2 more comments

marked as duplicate by CBroe, pad, Toon Krijthe, Baz, Mihai Iorga Oct 1 '12 at 8:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

A few thoughts come to mind:

  • rewrite this using PDO - the 'mysql_query' fn is deprecated
  • use a prepared statement and 'mysql_real_escape_string' to make sure the values don't have any bad chars
  • check the return value and use 'mysql_error()' to see if something went wrong
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.