If I have an array in php that contains a simple list e.g:
$colors = $array();
$colors = 'black', 'white', 'blue', 'red';
Is there a function or a way to loop through the array to make a variable equal a STRING of the results?
For example:
$theseColors = 'black, white, blue, red';
Cheers!