XML Php

   $xml = simplexml_load_file("books.xml");
   foreach($xml->book[0]->author->attributes() AS $a => $b) {
      echo "$a = $b ";
   }
?>