Hi,
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 instead of a new line.
Question: How do I rectify the situation so these actually become new lines again?