Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 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 */