Hi, I know that with variable variables, you can do the following:-
$foo = "bar";
echo $$foo;
and the output will be bar.
but, in my script, the value of "bar", will be given dynamically, i.e. it will be given, by the return string of a function. e.g.
$foo = getSomeString($bla);
but if i then do
echo $$foo;
i get no output, is there something im doing wrong?