Helo,
I have the following array
$appArray=array('a', 'b', 'c');
I want to produce output such as 'a\nb\nc\n'. The trouble is that when I use
implode('\n', $appArray)
I get 'a\\nb\\nc\\n' ( note the extra backslash).
Any idea how to fix this?