How can I assign a variable name from anther variable value?
for example: $a = "cost"
I want create a variable named cost but using the value from $a
thanks
It's ok. i got it. thanks
$$a = $a;
that's how you did it, isn't it?