Is there a way to break up the value in an assigned variable without any blank spaces?
eg.
$var = 123456789;
i could do this with an explode array buy because there are no spaces im having difficulty.
$result = explode("", $var);
$results[0] = $a;
$result[1] = $b;
$result[2] = $c;
etc...
$a would = 1
$b would = 2
$c would = 3
etc...
Is this possible?