On Wed, Feb 24, 2010 at 10:03 PM, Jurian Sluiman <[email protected]> wrote: > > So actually it isn't the data *retrieval* but rather the *insertion* if I > understand you right? The things I do are 99% from the manual:
Yes. > After calling the method the strings are in the database like I said (so > _with_ quotes). What's are the things I can look after (php settings, mysql > settings, system settings) to solve this problem? > Magic quotes is an ini setting. It's by far the most plausible explanation for your symptoms. Note that this kind of problem is a bit tricky to deal with, because it happens on write-time. So even if you correct the cause of the problem, you also need to go back and manually fix the corrupted data. -- troels
