I'm having the following problem and i can't seem to think of a way to EASILY do accomplish this without resorting to potentially server-intensive solutions. Basically, i want to take a string (say, an article from a database around 5000 words long) and break that up into chunks of 1000 words a piece so that the article will be spread out across mupltiple pages. the user can then click from page 1 to page 3 with relative ease.
i've thought about breaking the string up into an array but how much overhead will this cause on the server in terms of processing power and time...? and is there a more efficient way to handle things? session variables, arrays, pipes, etc???
how do bigger article-based sites (like this one) handle this problem?
thanks!
george.