Php uses variable variables. So
$a="hello";
$$a="oops";
echo($hello)
this gives us output:oops My question is can Variable variables be used for more levels like is $$$a defined? will
$a="hello";
$$a="oops";
$$$a="she";
echo($oops);
give us output?? If yes to what level are variable variables possible? If no why not????