How are you getting the distances?
You can order 2 ways, depending on how you get the distances. One is in the SQL statement:
SELECT something FROM table ORDER BY something ASC
Or using PHP's sort functions:
sort($distances); // $distances is an array
Diego