Hi there...
I want to be able to pass a string into a text area and for string to format itself so that it displays properly.
At the moment I have strings such as:
"Test<br>String<br>here"
when I pass this into the text area it obviously simply outputs:
"Test<br>String<br>here"
what I am trying to do is to have take the <br> tags and change them for new lines so that the output would be
Test
String
here
I have tried to egri the <br> for /n but it just prints out that... does anyone know how to control the text area layout schema?
Thanks
Clive