How do i get to echo details on oneline as opposed to the next line.
$car=array("red", "green", "white", "blue", "orange");
foreach $car as $color) {
echo "$color<BR/>";
I dont want the results on separate lines but on the same line with commons - please help