Hi, I'm using PHP to to this: $xml = simplexml_load_file("WebsitePropertyData.xml"); $results = $xml->xpath("/dataroot/WebsitePropertyData/City"); It returns cities. I want to know how to return distinct values (i.e. no repeats). I am aware of the distinct-values function,...