if ($your_string !== ''){
$arr_string = explode(',', $your_string);
$first_part = $arr_string[0];
array_shift($arr_string);
$second_part = implode(',', $arr_string);
}
--
itoctopus - http://www.itoctopus.com
"Lester Caine" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Can someone with a few more working grey cells prompt me with the correct
> command to split a string.
>
> The entered data is names, but I need to split the text up to the first
> space or comma into one string, and the rest of the string into a second.
> It's the 'first either space or comma' that eludes me at the moment :(
>
> In know it's probably obvious, but it always is when you know the answer.
>
> --
> Lester Caine - G8HFL
> -----------------------------
> Contact - http://home.lsces.co.uk/lsces/wiki/?page=contact
> L.S.Caine Electronic Services - http://home.lsces.co.uk
> MEDW - http://home.lsces.co.uk/ModelEngineersDigitalWorkshop/
> Firebird Foundation Inc. - http://www.firebirdsql.org/index.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php