Tutorial Variable Variables
$var1 = 'nameOfVariable'; $nameOfVariable = 'This is the value I want!'; echo $$var1; ?> Reference URL

https://iskablogs.blogspot.com/2014/03/tutorial-variable-variables.html
$var1 = 'nameOfVariable';
$nameOfVariable = 'This is the value I want!';
echo $$var1;
?>
Reference URL