Page is a not externally linkable
rlange - 2:33 pm on May 30, 2012 (gmt 0)
I suspect the issue was that you simply changed split to preg_split without also changing the first argument. The relevant line should be:
$parts = preg_split("/ /", $fullName);
Although using explode [us3.php.net] may be better in this case.
--
Ryan