|
Posted by Krustov on 09/19/07 19:44
<comp.lang.php>
<>
<Wed, 19 Sep 2007 19:25:47 -0000>
<1190229947.157523.58940@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
Navigation:
[Reply to this message]
|