Hallo,
I have a bankaccountnumber and i want to split it into an array.
example: $bank= "861324765";
I need this array: Array(8,6,1,3,2,4,7,6,5)
Is there an easy way to do this?
You can access characters from a string asif the string was an array:
echo $bank[4];
result: 2
A forum, a FAQ, email notification, what else do you need?
Thnx,
i'm a litte ashamed