+ 2
Anyone is here whon knows Variable Variables ???
With PHP, you can use one variable to specify another variable's name. So, a variable variable treats the value of another variable as its name. I have read all Tutorial of Variable Variables in SL but I want to further can anyone explain it
4 Respuestas
+ 17
$a = "b";
$a = "c";
echo $b;
........
+ 2
$a = "b";
$b = "c";
echo $a; // c
+ 2
you are correct @rose
+ 1
@Vishnu ks
Guess we're both correct ,my example is just more simple to get:)