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'm trying to insert a JSON entry into my table, but the catch is that this JSON string has a single quote character. The below code works perfectly when the string for mainIdea is Its nice but what I want is It's nice with an apostrophe. What would I have to change about the below code to make it work with an apostrophe? I've tried It\'s nice but that doesn't work either.

$jsonDic='{"mainName": "Steve Jobs","mainIdea": "Its nice"}';
$dictionaryToBeAdded=json_decode($jsonDic);
var_dump($dictionaryToBeAdded);
$data=mysql_query("SELECT arrayOfRequests FROM users WHERE email='$email'");
if($result = mysql_fetch_array( $data )) {
   //get json encoded arrayOfNotifs
    $decodeArray=$result['arrayOfRequests']; //this is empty
    //decode it
    $arrayOfRequests=json_decode($decodeArray);
    //add dictionary to be added
    $arrayOfRequests[]=$dictionaryToBeAdded;
    $sendBackArray=json_encode($arrayOfRequests);
    //update db
    mysql_query("UPDATE users SET arrayOfRequests ='$sendBackArray' WHERE email='$email'");
} 
share|improve this question
"I'm trying to insert a JSON entry into my table" that's the problem, db normalisation 101 - don't do that! – Dagon Feb 16 '12 at 23:06
What do you mean? – maq Feb 16 '12 at 23:06
you should have a new table for arrayOfRequests, with each in its own 'cell' joined to the users table . – Dagon Feb 16 '12 at 23:10
I shouldn't have JSON strings in my table? What then should I have? – maq Feb 16 '12 at 23:10
You're storing encoded subfields in a database field, which makes it harder to search for values in the subfields. – Jonathan M Feb 16 '12 at 23:10
show 14 more comments

2 Answers

up vote 1 down vote accepted

You need to escape your data before you attempt to use it in a database query:

mysql_query("UPDATE users SET arrayOfRequests ='$sendBackArray' WHERE email='$email'");
// ---------------------------------------------^                            ^
// --------------------------------------------------------------------------+

Imagine what would happen if $sendBackArray contains ', email =' and $email contains ' OR '' = '.

mysql_query("UPDATE users SET arrayOfRequests ='" . mysql_real_escape_string($sendBackArray) . "' WHERE email='" . mysql_real_escape_string($email) . "'");
share|improve this answer

You have to escape your slash as well:

$jsonDic='{"mainName": "Steve Jobs","mainIdea": "It\\\'s nice"}';
share|improve this answer
This is giving me NULL for var_dump($dictionaryToBeAdded); – maq Feb 16 '12 at 23:07
alright. then the quotes for map keys are valid. – mauris Feb 16 '12 at 23:08
Actually, JSON requires double-quoted keys. See json.org. Also they're not invalid for javascript. – Jonathan M Feb 16 '12 at 23:08
@jonathanm - yep just realised. – mauris Feb 16 '12 at 23:09
I didn't create that string by hand..it was an Objective C dictionary which was encoded to JSON with JSONKit – maq Feb 16 '12 at 23:09
show 1 more comment

Your Answer

 
discard

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

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