Einzelnen Beitrag anzeigen
  #6  
Alt 18.04.2005, 09:40:44
Benutzerbild von xabbuh
xabbuh xabbuh ist offline
SELFPHP Guru
 
Registriert seit: May 2003
Beiträge: 7.187
AW: Text verkleinern

Ich hätte es mit [func]wordwrap()[/func] so gemacht:
PHP-Code:
<?php
    $textSmall 
explode("n"wordwrap($text200"n"));
    
$textSmall $textSmall[0];
?>
Mit Zitat antworten