Doing print_r on my array produces:
Array
(
[0] => dogs
[1] => cats
[2] => birds
)
The newline between cats and birds is causing a problem. I did the following and the spacing still persists: array_walk($arr,'trim');
What can be done to remove this spacing?
var_export($yourarray);and post it here ?catsentry.