I have
$max = max($a, $b, $c);
which results, lets say 30. I don't know which variable($a or $b or $c) gives the result 30.
From this result(30) i have to find the variable name.
The result should be $a or $b or $c.How can I find this??
NOTE: Find the max is only a sample case.I need the variable name from a value from a group of variables.