if I had a database outputting the variable: $description and I wanted only the first 100 characters to show and then i wanted to go ... How would I do this?
PHP has a function that can easily do this.. SUBSTR($description,0,100) will return a string which contains from the first 100 characters of $description... That should do the trick..
Andre