edit..if you want artist names, delete this line
$e_arr[1]=substr($e_arr[1], 0, -2);//gets rid of "/n"
and change
if($e_arr[2]) $artists.=$e_arr[2].",";
to
$e_arr[2]=substr($e_arr[2], 0, -2);//gets rid of "/n"
if($e_arr[2]) $artists.=$e_arr[2].",";
..i guess