I have following associative array:
$weight["fan"]=10;
$weight["clock"]=2;
$weight["wheel"]=12;
$weight["Bicycle"]=20;
How should I sort the above array ascending or descending w.r.t value as follows:
$weight["Bicycle"]=20;
$weight["wheel"]=12;
$weight["fan"]=10;
$weight["clock"]=2;
Regards,