Thanks threehearts! I actually tried this and it seemed to have worked, but it's probably not as efficient as your solution:
$start = strpos($name, ","); // find position of comma
$length = strlen($name); // length of string
$fName = substr($name, $start+1, $length); // text after comma (first name)
Thanks again for your reply.