[eluser]Samuurai[/eluser]
Hi everyone,
I think i'm going blonde....
I have this array:
array(3) { [0]=> array(1) { ["date"]=> string(10) "2009-11-12" } [1]=> array(1) { ["date"]=> string(10) "2009-11-13" } [2]=> array(1) { ["date"]=> string(10) "2009-11-14" } }
How can I implode it so that the strings are seperated by ","'s
Code:
implode(",",$myarray);
resultst in this:
Array,Array,Array and it whinges about an Array to string conversion.
I think the problem lies in the fact that this is three arrays within one, but how do I easily bring those arrays to the surface, as it were?
I'm using result_array().
Cheers!
Beren