DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Trim A Line Of Text To X Characters
Trim a line of text to X characters
<? $varshort = substr($var,0,25); echo "$varshort"; ?>




