<?php
$testArray = array('Test1', 'Test2', 'Test3');
$testString = implode(",", $testArray);
echo $testString; // Test1,Test2,Test3
?>
<?php
$testArray = array('Test1', 'Test2', 'Test3');
$testString = implode(",", $testArray);
echo $testString; // Test1,Test2,Test3
?>