Below is the code that can be used to strip the last comma from the foreach loop −
Example
$result_str = array("Hi", "Hello", "have a", "good day");
foreach ($results as $result) {
$result_str[] = $result->name;
}
echo implode(",",$result_str);Output
This will produce the following output −
Hi,Hello,have a,good day