I use mysql_real_escape_string() before interting information in the database, but when I want to show the data from the database, ‘ is replaced with \’.
So how can I get rid of that backslash? Is there a function that reverses mysql_real_escape_string()?
I use mysql_real_escape_string() before interting information in the database, but when I want to
Share
magic_quotes_gpcis turned on. Just turn it off.