PHP Convert array into string – PHP April 14, 2011 Pramod T P Leave a comment <?php $testArray = array('Test1', 'Test2', 'Test3'); $testString = implode(",", $testArray); echo $testString; // Test1,Test2,Test3 ?>