Problem: $data = array(“A”,”M”,”X”,”b”,”d”,”E”,”l”); I need to sort the data base on value. When I use asort($data), got the following: [0] => A [5] => E [1] => M [2] => X [3] => b [4] => d [6] => l In the above example, “b”,”d” and “l” starts with a lower case but ends […]