How to store new line character \n into a string field of one table?

0
How to store new line character '\n' into a string field of one table? If directly write '\n' inside a string, it will store literally. Put the ‘<br/>’ into the string is not working too      
asked
1 answers
2

You just need to put break the string by directly including the newline characters, so something like this when you set the variable.

'011000-002
012000-002
013000-002'

I hope this helps.

answered