When I want to print the content of an Array, I always get the string "Array" instead of the content.
I've also tried: implode(",", $myArray);
but still I get "Array" rather than the content itself
implode() takes a maximum of two arguments:
string implode ( string $glue , array $pieces )
Try var_dump(), var_export() or print_r() instead:
var_dump($myArray);
var_export($myArray);
print_r($myArray);
$myArraycontain nested arrays? Can you add the output ofvar_dump($myArray)to your question?