Menu
Tag

PHP XML

Simple XML – Use XML in PHP

PHP By Jul 08, 2013 No Comments

Now these days XML and Json are the best ways for data transfer. Here is the code for how to use the XML in PHP. We will use 2 ways to read the XML File in PHP. 1. Reading xml file using DOM 2. Reading xml file using Simple XML result in Table Reading xml file using DOM $xml=new DOMDocument(); $xml->load(“Details.xml”); $details=$xml->getElementsByTagName(“details”);…