Hi
new to php, reading manuals now,but not getting same output
as example.
using php 4.3.2
<?PHP
$text = "The quick brown fox jumped over the lazy dog.";
$newtext = wordwrap( $text, 20 );
echo "$newtext\n";
?>
I get this(all one line):
The quick brown fox jumped over the lazy dog.
I should get this:
The quick brown fox
jumped over the
lazy dog.
What's wrong?
thanks.