I got the following array:
$fans = array( 'Bob' => '91621 ',
'Jeff' => '92418',
'Sara' => '91175',
);
arsort($fans);
print_r($fans);
Array ( [Jeff] => 92418 [Bob] => 91621 [Sara] => 91175 )
How would I display the information as:
$name: $value
$name: $value
$name: $value
?