Hello:
This is what i got form PHP help doc.
Example 1. wordwrap() example
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap( $text, 20 );
echo "$newtext\n";
This example would display:
The quick brown fox
jumped over the lazy dog.
However it doesn't work the way it does. What's wrong here?
Alan