My original question: insert special characters
I want to insert the """ into database with php, and I use the function to escape the quotes:
$text = str_replace("\"","\\\"",$text);
my original data is:
"support.apple.com/kb/HT4070"
but when I check my database it shows:
\"support.apple.com/kb/HT4070\"
and I want to keep this quote, how can I do it in the php? Thank you very much.