<?php

$arr = range(1,6);
$str = '';
foreach($arr as $item){
	$str .= ' '.$item;
}

echo $str;

