1 2 3 4 5 6 7 8 9 <?php $my_arr = array(1, 2, 3, 4, 5); foreach ($my_arr as $value) { echo $value, " "; } ?>