Using the implode() Function
<?php $input_array = array("J", "M", "M"); $orig_string = implode(", ", $input_array); ?>