Hello!
I have trouble with sorting an Array.
It looks like this:
Array ( [test] => 9 [CDPlayer] => 2 [Pizza] => 5 )
I need to sort the numbers. When I use sort(); it changes the Arrays Keys like this:
Array ( [0] => 2 [1] => 5 [2] => 9 )
Does anyone know how to avoid or work around this problem?
Thanks!