|
Posted by techusky on 09/19/07 21:48
On Sep 19, 3:44 pm, Krustov <m...@privacy.net> wrote:
> <comp.lang.php>
> <>
> <Wed, 19 Sep 2007 19:25:47 -0000>
> <1190229947.157523.58...@22g2000hsm.googlegroups.com>
>
> > I am making a website for a newspaper, and I am having difficulty
> > figuring out how to take a string (the body of an article) and break
> > it up into three new strings so that I can display them in the
> > traditional newspaper column format.
>
> > For instance, say the string $articleBody contains a 600 word article.
> > What I want to do is break $articleBody up into three new strings in a
> > format such as this:
>
> > $string1 contains words 0-200 from $articleBody
> > $string2 contains words 201-400 from $articleBody
> > $string3 contains words 401-600 from $articleBody
>
> $newtext=wordwrap($slap,200,"\n",1);
>
> --
> (c) The Amazing Krustov
I'm sorry, but that does not do what I described. I need to take one
string and turn it into three separate strings. Thank you for your
quick reply, though.
[Back to original message]
|