Forum Moderators: coopster
I have a string of numbers (could include characters as well)
EX: 1230123456987
I want to seperate the First 3 characters as one element and the last 3 as an element so I can use them as variables.
I assume this is similar to an explode() function, but as I have no seperator (and would prefer to avoid one) I'm not sure where to begin.
Is it basicly a "First 3 as $var1" & "last 3 as $var2" ?
Thanks in advance