Hi!
If I have an array like this.
$resolutions['1024x768'] = "5";
$resolutions['800x600'] = "9";
$resolutions['480x460'] = "3";
How can I sort this array without keys changed to numbers (0, 1, 2 in this case). I really need to keep keys intact. I could use two arrays but it would be too messy for my purposes.
Thanks!