I have an array of values
array(
'FDR' => 'Franklin D Roosevelt',
'JFK' => 'John F Kennedy'
)
and I have a variable
$variable = 'FDR'
I want to change the variable to say Franklin D Roosevelt based on the fact that the array points FDR to Franklin D Roosevelt.