hmmm
Is it possible to use the value of one variable to make the name of another? In PHP it would be like this:
$fu = "bar";
${$fu} = "on";
This would yield a variable with the name $bar with a value of "on".
$fu = "bar";
${$fu} = "on";
This would yield a variable with the name $bar with a value of "on".
