Depends if the page comes from a file, or from another place...but the general algorithm would be:
- Find size by either using filesize() or strlen()
- divide size by 4, let it be $x
- if it is a file, fread() $x bytes and put it in a variable - do the same thing 4 times
If it isn't a file, use substr() to get the 4 chunks.
Diego