How can I get value from variable which is string ?
$Member_Student = 3600;
$selectedItem = "Member_Student";
$price = "$" . $selectedItem;
print_r($price); //prints $Member_Student instead of 3600
I cannot use eval function.
Use curly braces to denote a variable:
|
|||
|
use 2 $ signs:
|
|||
|
To get a variable from another variable containing its name use |
||||
|