in reply to variable through another variable

So you've done something like this?
$var="\$somevariable";
and you want to do this?
$data=$var
now...
$data="$somevariable"
but why would you want to do that? Unless you really meant to do this?
$data=$somevariable;