I have some simple HTML code that is stored in a MySQL database table column. A brief example of this HTML data is: SOME TEXT I need to properly 'escape' the / and the " values with a \ so that the HTML data appears as: SOME TEXT Can this be performed in a MySQL query or does special logic need to be written to introduce the \ character to my result string?
↧