If you want to output the string without the "." characters, simply use something like
$stringwithoutdots = ereg_replace(".", " ", $stringwithdots);
Or if you want to have each separated part of the string (split with the "." as a delimeter), use split() :
$string_arrayed = split(".", $stringwithdots);
Each section of the string will now be a respective element of the array $string_arraryed
eg. If the string was hello.there.howdy, $string_arrayed[0] would be "hello", $string_arrayed[1] would be "there", and $string_arrayed[2] would be "howdy".
Hope this helps 🙂