The title is confusing, I know but here is my problem, I need to convert a string into a variable name.. Ill give an example.
Variable1 = "hi";
Variable2 = "bob";
Now, I want PHP to take the value of Variable1 and set it as the name, than take the value of Variable2 and assign Variable1 its value.. so it would turn out like this:
$hi = "bob";
Does anyone understand the problem?