I currently have a form as follows
$sql = "select id, name, mcontact from onlinet where mcontact !='NA' and visable !='0' order by mcontact";
Mcontact has a date in in the formate dd/mm/yyyy and I am trying to get it so it will order them with the soonest date at the top. at the minute it only orders by the first 2 in the dd column and the years and months are mixed up.
How can I order this by date?