This question already has an answer here:
I have a plugin exporting a bunch of strings from a database for me. The data returned is in a format like this
a:3:{i:0;s:8:"Skeletal";i:1;s:6:"Cardio";i:2;s:8:"Muscular";}
a:3:{i:0;s:14:"Access to care";i:1;s:15:"Confidentiality";i:2;s:20:"Consent to treatment";}
I can apply a php function to filter the data, how would I get it to return like this, using a function.
Skeletal, Cardio, Muscular
Access to care, Confidentiality, Consent to treatment
</div>