$string = "Use your broadband connection for unlimited calls to all 50 states and Canada";
how do i print the fist 3 words of a string? 🙂
Explode the string by blank space. This creates an array. Just echo array[0] array[1] and array[2]
[man]str_word_count[/man]
thanks 🙂