PHP implode() May 22, 2012 Pramod T P It joins array elements with a string Example <?php $arry = array(“PHP”,”HTML”,”JS”); echo implode(“,”,$arry); ?> Output PHP,HTML,JS