Is it possible to check if a variable exist using a variable value? Like
//some variables:
$variable_a;
$variable_b;
$variable_c;
$variable_d;
$variable = '$variable_b';
if (the content $variable which is '$variable_b' exists == true){
}
or how to make a variable value into a variable? Like
$variable = 'variable_name'; ...some code to make 'variable_name' a variable