Hi
I have a memo field in a table which contains a string. This string is made up of the following data:
#line1#line2#line3#line4
and so on...
I need to be able to display this string in a textarea on my web page like so, i.e. without the hashes and on each new line:
Line1
Line2
Line3
Line4
When the page is posted, I also need ot be able to take the contents from the textarea above and put them back into the database like so but appending any extra data to the end of the string that people may type in on new lines:
#line1#line2#line3#line4#line5#line6
How would this best be done?
Thanks in advance