I have an array, and with var_dump it returns this:
array (size=2)
0 =>
array (size=2)
'id' => int 18
'name' => string 'Drama' (length=5)
1 =>
array (size=2)
'id' => int 10765
'name' => string 'Sci-Fi & Fantasy' (length=16)
In what way, can I just get the 'name' from the list and sort by commas? In this example, I wanted it to be: Drama, Sci-Fi & Fantasy