Splitting MySQL column that contains comma-separated list

Do a preg_replace(), find the commas, replace with line breaks.

(If I remember correctly, explode() turns a comma delimited list into an array that you can iterate through.)

HTH,

:slight_smile: