Sample XML File Used The following XML data will be contained in the referenced “test_file.xml”: XML Mustang Accord XML <?xml version=“1.0″ encoding=“ISO-8859-1″?> <cars> <make name=“Ford”> <model>Mustang</model> </make> <make name=“Honda”> <model>Accord</model> </make> </cars> Loading XML Data Using simplexml_load_file This function is typically used for loading XML data either from a file, or a remote call. In this... (Continue reading)