function echo_arr($arr){ for ($i=0; $i < count($arr); $i++) { echo $arr[$i]; } } echo_arr($your_array_here);