Heres what i mean:
JavaScript
x
foreach ($array as $a) {
echo $a.',<br/>';
}
current output would be:
JavaScript
a,
a,
a,
a,
i want the output to be like this:
JavaScript
a,
a,
a,
a
(all ‘a’ separated with comma and when it comes to the last loop it doesnt write a comma)
Advertisement
Answer
Try this:
JavaScript
echo implode(",<br/>", $array);