im using ns_puts to output values on a page....
situation:
set string_contains_a_long_value "A A A B B B C C C"
#ussuming those alphabets are words
ns_puts "$string_contains_a_long_value"
problem:
without using <br> or any html tags at all how can i place "Bs" on the next line" ?
example expected output on a page:
A A A
B B B
C C C
again without using <br> etc.. i tested using \r and \n but it doesn't work at all.
looks like this
set string_contains_a_long_value "A A A \r\n B B B \r\n C C C"
thanks in advance...