Hi,
I have a table with one of the fields being a string with the name of "time". It contains times throughout one day in the format of things like:
8:55 AM Eastern Time
9:00 AM
9:00 AM
9:00 AM
10:15 AM
11:10 AM
12:00 PM
Notice there can be multiplies. Also, they times are not in that nice order. My question is, how would I make it (using either PHP or MySQL) to sort the time string in chronological order. Keep in mind that 10:10 PM is later then 11:00 AM.
THanks!