Thanks...
It worked... here is the test code...
// Example of split where you split a lastname and firstname from a csv file
$lastnamefirstname = "Lastname,Firstname";
list($lastname, $firstname) = split(",", $lastnamefirstname);
$fullname = "$firstname" . " " . "$lastname";
echo($fullname . "<br>\n");
Bob