On my server magic_quotes_gpc are on.
Php manuals say that I don't need to use addslashes(); if magic_quotes_gpc are on:
The PHP directive magic_quotes_gpc is on by default, and it essentially runs addslashes() on all GET, POST, and COOKIE data. Do not use addslashes() on strings that have already been escaped with magic_quotes_gpc as you'll then do double escaping.
However, if I don't use addslashes(); all teksts in my DB looks like this:
"text", 'text'
and not like this:
\"text\", \'text\'
Is this normal?