Hi, this should be easy.
I have a string "123456", I need to split it to list the first 3 numers.
Regards Jules jules@hungrybear.co.uk
If you just need the first three numbers, use [man]substr[/man]
If you need to get each of the first three numbers try:
$string = '123456'; $first = $string{0}; // Now has 1 $second = $string{1}; // 2 $third = $string{2}; // 3