<?php
$arr=array('james','tom','symfony');
$string=implode(",",$arr);
echo $string;
?>