Here ya go... this works good for beginnings, but not full words....
<?php
function makeDots($text,$length) {
$text = substr($text,0,$length);
$lstsppos = strrpos($text,"");
return substr($text,0,$lstsppos);
}
?>
<?
$story = "Since a week I've discovered PHP. On this site I found a script for creating abstracts from full articles";
print makeDots($story,60) . "...";
?>
Andrew Heebner