Lets say I have a 6 digit string.
How can I take this string and get the first two digits seperated from the string....and the last two digits from the string??
Thanks for the help.
You should be able to use the substr() function to do both.
http://us2.php.net/manual/en/function.substr.php
Thanks....works great!