Showing posts with label wrapping the text by 10 charecters. Show all posts
Showing posts with label wrapping the text by 10 charecters. Show all posts
| 0 comments ]

//wrapping the text by 10 charecters
function displayWordWrap($text,$size=10){
$newtext = wordwrap($text, $size, " ", true);
return $newtext;
}