This is how I explode a sentence into an array of words:
$words = explode(" ", $sentence);
How do you do the opposite? (take an array such as $words with single numeric keys into a variable storing a string such as $sentence with spaces between words)
http://php.net/manual/en/function.implode.php