$myarray = explode(" ", "one two three four five"); foreach ($myarray as $s) { echo "$s<br>"; }
one two three four five