I have a variable in a variable.
I have done this before but it is not working this time.
I have it in a for loop so my code is:
$abc1 = one;
$abc2 = two;
for($i = 0; $i < 2; $i++) {
echo $$abc$i;
}
The out come should be "one two", correct?
The concept is correct? The code is correct? - to the best of my knowledge and references.
Any ideas? Thanks, Regards X.