$string = "Mary had a little lamb whose face was icy cold. Everywhere
that Mary went the townsfolk were sure to know";

I want to display the text where the max number of  characters on any
one line is 34.

1234567890123456789012345678901234
Mary had a little lamb whose face
was icy cold. Everywhere that
Mary went the townsfolk were
sure to know.

Where would I start?

strlen($string)
explode
and then what?

Reply via email to