PHP

PHP 5, Functions, Classes, Object Oriented Programming

Parsing XML with PHP

by: Matt Hofstetter | March 2 , 2011 | views: 755

There are a number of ways to parse, create and save XML in PHP. Two of the more common methods used are the SimpleXML library, and the DOMDocument class. SimpleXML is extremely, well... Simple. With SimpleXML we can parse an XML document and easily process its elements, attributes, children… view article