Adding attributes : simplexml_load_string « XML « PHP






Adding attributes

 
<?php
   $xml = simplexml_load_file("books.xml");
   foreach($xml->book as $book) {
      echo $book->author." is ".$book->author->attributes().".<br />";
   }
?>
  
  








Related examples in the same category

1.Accessing identically named elements
2.Changing elements and attributes
3.Loop through children
4.Loading an XML document from a file
5.Fetching a remote XML document
6.Parsing XML in a string
7.Parsing an XML Document with SimpleXML
8.simplexml_load_file.php
9.Loading a remote XML document
10.Outputting XML
11.Using SimpleXML to extract data
12.Simple XML
13.Print XML element attributes
14.Printing sub-element contents
15.Saving an XML document to a file