I need to access attribute country's value (without using xpath) from the following: http://apps.db.ripe.net/whois/lookup/ripe/inetnum/79.6.54.99.xml
This is what I have done so far
$xml = simplexml_load_file("http://apps.db.ripe.net/whois/lookup/ripe/inetnum/79.6.54.99.xml");
$country = $xml->objects->object->attributes->attribute ... ???