Hi.
I've got a string that contains about 400 chars. And I wanna split it in 3 parts: - 1st 150 - 2nd 150 - 3th 100
so that i get i.e. $string[1], $string[2] and $string[3].
any ideas how to split it ??
Thanx
Read about substr() in manual... It will help :-)
I already solved it with chunk_split(). ThanX.