Forum Moderators: coopster
$c1 = "hello";
$a = 1;
$b = c$a;
echo "$$b";
the only way i can get this to work is if i first compile $$b with another function
$c1 = "hello";
$a = 1;
$b = c$a;
// $b = functionOfSomeSort($$b);
echo "$b";
what would be the best "functionOfSomeSort()" to use?
;)