|
I don't know of a PHP mysql function that will only pull down a certain amount of text or data from a field, you either get the entire field or you don't. The best thing I can think of to do would be to use explode() to change the text into an array, limited to 100 words, then use implode() to turn it back into a string and print the string.
|