<?php $str = "Hello world. It's a beautiful day."; $split = explode(" ",$str); $hello = $split[0]; $world = $split[1]; ?>