$result2 = mysql_query("SELECT DISTINCT customers.directoryIDone, customers.directoryIDtwo, customers.countyID, counties.countiesID, counties.countiesName FROM customers, counties WHERE ((customers.directoryIDone = '$id') OR (customers.directoryIDtwo = '$id')) AND counties.countiesID = customers.countyID ORDER BY counties.countiesName LIMIT $count,$limit");
Pulls out the following:
Cheshire
Devon
Dorset
Hertfordshire
Isle of Wight
London
London
London
Oxfordshire
Staffordshire
Surrey
West Midlands
Wiltshire
Wiltshire
Question is, why am i getting duplicate results?