Here is the situation
$rest = substr("abcdef ghij klmn", 0, 4); // returns "abcd"
$rest = substr("abcdef ghij klmn", 0, 9); // returns "abcdef gh"
but how can you get it to look for the complete word or white space
so it returns
abcdef ghij
Can that be done without a monster bit of code
Cheers