PHP-Code:
$text wordwrap($text10);
  
$text htmlentities($text);
  
$chunks str_split($text10);
   
   unset(
$text);
   foreach (
$chunks as $key => $value)
   {
     
$text .= $value "<br>\n";
   } 
(untested)