I have tried many things but none worked, I am sure I am missing something simple.
Here is my array:
$array['Product1'] = 500;
$array['Product2'] = 1230;
$array['Product3'] = 432;
$array['Product4'] = 2000;
Here is the result I want please!
$array['Product4'] = 2000;
$array['Product2'] = 1230;
$array['Product1'] = 500;
$array['Product3'] = 432;
Tried natcasesort, array_reverse, asort, rsort, nothing seems to work. What I am missing here?
Any help is appreciated