View Single Post
Old 10-29-2004, 06:52 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,489
sde is on a distinguished road
just use php ..
PHP Code:
if( strlen($playername) > 10 ){
  
// shorten player name
  
$playername substr($playername,0,10);

alternatively, you could insert a <br> tag with php after the 10th character too.
__________________
Mike
sde is offline   Reply With Quote