how can return the array index in the below example? in last statement shows the value of BMW. but I need to know how get the BMW as output. is it possible in php?
[php]$car_price[“BMW”]=‘25bn’;
$car_price[“Ferrari”]=‘23bn’;
$car_price[“volvo”]=‘19bn’;
echo $car_price[“BMW”];[/php]