Hi
I'm amending an existing application in PHP. One of the fields in the database called 'mileage' has a list of values stored in a text column as follows:
75,000
51,000
80,000
32,000
100,000
How would you order these values numerically as follows?
32,000
51,000
75,000
80,000
100,000
Thanks