$url = strip_tags(trim($site_url)); $alexa = simplexml_load_file('http://data.alexa.com/data?cli=10&url=' . $url); $globalRank = number_format((int)$alexa->SD->POPULARITY['TEXT']); $countryCode = $alexa->SD->COUNTRY['CODE']; $countryName = $alexa->SD->COUNTRY['NAME']; $countryRank = number_format((int)$alexa->SD->COUNTRY['RANK']); echo "Global Rank: " . $globalRank; echo '<hr />'; echo "Country Rank: " . $countryName . ' ' . $countryRank;