Forum Moderators: coopster
TIA
Sorry for being lazy
$comma_separated = implode(",", $array);
This creates a string with the values in the array separated by commas.
If you're trying to create an array from a comma separated string, use explode:
$newArray = explode(",", $array);