$length = strlen($title);
if($length > 10)
{
$new = substr($title,0,10);
$title = $new."...";
}