Suppose i have the following variable
$a="stack";
$b="overflow";
now i want to create another variable using the variable $a and $b .I want the new variable to be $stack_overflow ="The best place to learn programming";
I tried the following to create the variable $stack_overflow but it didn't work
${$a."_".$b}="The best place to learn programming";
echo $stack_overflow;