Dear Readers,
Is it possible to split a text I recieve from a database after the 300th word and put that in a variable and split it agaian after the 600th word and put that part in another variable and so on and so on..
Gr.
Kasper Schoonman
anything is possible
the only way that comes to mind is using $arData = explode('',$datatext); to put the words into an array, and than get the first 300 words back into a string.
you can use substr($textdata, 0 , 300) to get the first 300 chars