Quick question, after I insert a block of text into my database after running it through "mysql_real_escape_string" it contains \' and \". Now, when I display the text back on a page somewhere it also contains those "\" slash characters. How should I deal with this? I do not want to do:
str_replace("\\", "", text)
Because I don't want to remove legitmate \ slash characters if someone actually wanted one.
str_replace("\\", "", text)
Because I don't want to remove legitmate \ slash characters if someone actually wanted one.