开发者

Double mysql_real_escape_string insert of new line characters. How to get new line breaks back?

I have a textarea field that's inserted into a mysql database which may contain line breaks. The textarea data has accidentally gone through two lots of mysql_real_escape_string functions. Therefore the line-break bit of the field data is now stored as "\r\n" instead of an actual new line, as it's been double escaped?

Now when written back to the textarea html field for editing, "\r\n" is shown开发者_StackOverflow中文版 instead of a new line.

Question: How do I rectify the situation so these actually become new lines again?


You are probably do escaping using mysql_real_escape string twice - as input filter (wrong!) and as a SQL data preparation. You have to get rid of the first one.

Or once, as input filter, and then use prepared statements for the query. Get rid of the first one as well.


You should definitely fix the situation that is leading to the double escaping.

A quick fix for contents already processed that way is

str_replace("\\r\\n", "\r\n");


To get your original back, you have to do the reverse. Make a script that selects your existing rows from the table, and without escaping the input, update the column value. This, in essence, will store back in the single (correctly) escaped input.


Try This Code

$tval = str_replace("\\r\\n", "\r\n",mysql_real_escape_string(trim($tval)));
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜