parsing xml version 2 PHP

Sandlizard

New Member
Im trying to read a xml version 2 with simpleXMLElement and got errors. Heres my sample xml\[code\]<?xml version="2.0"?><books> <book id="978-1594489501"> <title>My books</title> <author>Someone</author> <publisher>publisher</publisher> <price>14.27</price> </book></books>\[/code\]PHP code:\[code\]$xml = new SimpleXMLElement('books.xml', null, true);$attributes = $element->attributes(); // get all attributes$children = $element->children(); // get all childrenforeach($children as $key => $value){ echo $value;}\[/code\]
 
Back
Top