Eg I have an array where
$arr = array ( "a" => "orange",
"b" => "banana",
"c" => "apple" )
how can I get the 'a','b','c' out of the array? I want the actual association titles, not the data they are associated with.
Thanks
anyone who doesn't have a...