After running a string through mysqli_real_escape_string, is it safe to remove the backslash before echoing it into a page?

I’m using a rich text editor (Nicedit) with a cms project I’m making. In order to reduce the likelihood of SQL injections, I’m using the mysqli_real_escape_string function to escape the user input before putting it into the database.

Howe… Continue reading After running a string through mysqli_real_escape_string, is it safe to remove the backslash before echoing it into a page?