how to retrieve node from xml file (tree strucuture) using php

nathanriseymour

New Member
I have the following XML tree:\[code\]<?xml version="1.0" encoding="utf-8"?><root> <start_info> <info tabindex="1"> <infonumber>1</infonumber> <trees>green</trees> </info> </start_info> <people> <pe> <people_ages> <range number="1"> <age value="http://stackoverflow.com/questions/12499344/1">1</age> <age value="http://stackoverflow.com/questions/12499344/2">2</age> </range> </people_ages> </pe> </people></root>\[/code\]Firstly I have to display all of the nodes in the checkbox and then their node value have to retrieve on submit of the file.I have to do it using PHP.
 
Back
Top