xxxxxxxxxx
<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 8, "<br />\n");
echo $newtext;
?>
xxxxxxxxxx
<?php
$str = "An example of a long word is: Supercalifragulistic";
echo wordwrap($str,15,"<br>\n");
?>
xxxxxxxxxx
<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 8, "<br />\n");
echo $newtext;
?>
xxxxxxxxxx
<?php
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap($text, 8, "<br />\n");
echo $newtext;
?>