OK, so I am returning an
@data from perl to a textarea.
if I run somehitng like thisl
foreach (
@data) {$out=$_." ";}
and then run a setValue with that variable it works great.
However, it is all on one line.
So I have tried:
foreach (
@data) ($out=$_."\n";}
which give bad java (I assume, no changes)
I also tried but I get in the data.
I assume I need a UTF-8 code, but not certain which one.
Tips/Pointers/RTFMS appreciated
Andy