example:
$orange = array(“orange”, “you”, “glad”, “i”, “didn’t”, “say”, “banana”);
$orange_str = implode(” “, $orange);
echo $orange_str; // “orange you glad i didn’t say banana”
doesn’t hurt to try. also, if you don’t like the word implode, you could simply use join() [i like this better because it's like python =)]
]]>