Adding a Linefeed to a string

0
How can I add a line feed in a string? I saw several items on the issue. I tried them but it does not work I tried: < br > %0A Defining a variable in two lines with a linefeed and calling this variable for the wanted effect.
asked
1 answers
3

Adding a linefeed is quit simple actually. Just put $string + '

'

In text add a plus sign a single quote give return and place again a single quote. If you want to add it to the string just create a new string with the contents after the + sign and let the new string be the old string + the linefeed string.

answered