I have a few number values that I need to store in one string/array and then use it at a later time.
The idea is:
$a = 1;
$b = 2;
$c = 3;
$alpha = $a + " " + $b + " " + $c;
echo $alpha;
The output of alpha in turn would be "6" I want it to be "1 2 3".
Also after it is stored possible to break it up again and then retrieve the values of "1 2 3" and store them back to new variables of $a1, $b1, $c1.
Thankyou, Regards X