Contact: aviboots(AT)netvision.net.il
41,231 questions
53,733 answers
573 users
$arr = array("php"=>"99", "c"=>"108", "c++"=>"31", "python"=>"21"); krsort($arr); foreach ($arr as $key => $value) { echo $key . " - " . $value . "\n"; } /* run: python - 21 php - 99 c++ - 31 c - 108 */