i've got it working with 2 names, thanks but it messes up when it get to three names! i have put the email as the first word
$photographer = crabbe@dcrabbe.co.uk daniel crabbe
and this is the code i'm using to seperate it:
$result_array=explode(" ",$photographer);
$email_photog=$result_array[1];
$name_photog=$result_array[0]." ".$result_array[2] .$result_array[3];
but when it gets to three names it gives "+45 2071" not really sure where that comes from.
any ideas how to tackle the 3rd name?