Does anybody know how to cut a variable into three parts for example like:
$variable000 = '123456789';
& now the splitted / cutted variable is
$variable001 = '1';
$variable002 = '2345678';
$variable003 = '9';
The variable000 can be even bigger or even smaller up to one number only. The variable002 can unfortunately be very... changable...
So the question is how can be this done?!!
Any idea? Thanx.