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:
How to prevent SQL injection in PHP?
Unable post text to MySQL using “Insert Into”

I have what maybe a simple question, but can't seem to find an answer on how to solve this. I am fairly new to coding.

When passing Movie titles into MySQL database using PHP, I get this error:

You have an error in your SQL syntax; check the manual that corresponds to your 
MySQL server version for the right syntax to use near 's Dreams' )' at line 10

Here is my code:

//Getting a list of all the users friends
$MyFriends=$facebook->api('/me/friends');

//Loop through friends array to identify each friend
$c=0;
while ($c<count($MyFriends['data']))
{
    $N=$MyFriends['data'][$c]['name'];
    $I=$MyFriends['data'][$c]['id'];
    mysql_query("INSERT INTO UserFriends
    (
        UserFBID, 
        FriendFBID,
        DisplayName
    ) VALUES
    (
        '$FBID', 
        '$I',
        '$N'
    ) ") or die(mysql_error()); 

    //Getting a list of friends each movie likes
    $friendId = "/" . $I . "/movies";
    $myFriendsMovies=$facebook->api($friendId);

    //Loop through to identify each movie
    $x=0;
    while ($x<count($myFriendsMovies['data']))
    {
        $r = $myFriendsMovies['data'][$x]['id'];
        $s = $myFriendsMovies['data'][$x]['name'];
        mysql_query("INSERT INTO LinkedMovies 
        (
            UserFBID, 
            MovieFBID,
            MovieName
        ) VALUES
        (
            '$I', 
            '$r',
            '$s'
        ) ") or die(mysql_error());         
        $x=$x+1;
    }
    $c=$c+1;
}

It seems the variable $s has picked up the movie 'Akira Kurosawa's Dreams' and keeps bombing out of the loop, with the above error.

I have looked everywhere on how to fix it and I can't seem to work it out.

share|improve this question
4  
Have you ever considered using the proper database escaping function? Accepting random user input and putting it into queries isn't very advisable. – mario Jan 13 at 12:34
Preferrably don't use mysql_* functions in new code. They aren't actively maintained and are officially discouraged. Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial. – mario Jan 13 at 12:38

marked as duplicate by mario, ifaour, Igy, Frank van Puffelen, Anoop Vaidya Jan 14 at 6:42

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.

3 Answers

you have to use addslashes to add slashes

$N=addslashes($MyFriends['data'][$c]['name']);
$I=addslashes($MyFriends['data'][$c]['id']);
mysql_query("INSERT INTO UserFriends
(
    UserFBID, 
    FriendFBID,
    DisplayName
) VALUES
(
    '$FBID', 
    '$I',
    '$N'
) ") or die(mysql_error()); 
share|improve this answer

You should use code like following mysql_real_escape_string function for safe sql queries and escape string before execute sql queries

//Getting a list of all the users friends
$MyFriends=$facebook->api('/me/friends');

//Loop through friends array to identify each friend
$c=0;
while ($c<count($MyFriends['data']))
{
    $N=mysql_real_escape_string( $MyFriends['data'][$c]['name'] );
    $I=mysql_real_escape_string( $MyFriends['data'][$c]['id'] );
    mysql_query("INSERT INTO UserFriends
    (
        UserFBID, 
        FriendFBID,
        DisplayName
    ) VALUES
    (
        '$FBID', 
        '$I',
        '$N'
    ) ") or die(mysql_error()); 

    //Getting a list of friends each movie likes
    $friendId = "/" . $I . "/movies";
    $myFriendsMovies=$facebook->api($friendId);

    //Loop through to identify each movie
    $x=0;
    while ($x<count($myFriendsMovies['data']))
    {
        $r = mysql_real_escape_string( $myFriendsMovies['data'][$x]['id'] );
        $s = mysql_real_escape_string( $myFriendsMovies['data'][$x]['name']);
        mysql_query("INSERT INTO LinkedMovies 
        (
            UserFBID, 
            MovieFBID,
            MovieName
        ) VALUES
        (
            '$I', 
            '$r',
            '$s'
        ) ") or die(mysql_error());         
        $x=$x+1;
    }
    $c=$c+1;
}
share|improve this answer
$N=$MyFriends['data'][$c]['name'];

should be:

$N = mysql_real_escape_string($MyFriends['data'][$c]['name']); // sanitize the data, do this for all external data input

Also:

Please, don't use mysql_* functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial.

share|improve this answer
Thanks for this. This very helpful. – aleem Jan 13 at 12:58
@aleem if this solved your problem, you should mark the question as solved by clicking the checkbox to the left of this post. – cryptic ツ Jan 13 at 16:29

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