in php5, parsing and processing xml can be easily done with SimpleXML extension.
to parse xml file:
$obj = simplexml_load_file($file);
to parse xml string:
$obj = simplexml_load_string($string);
example
<data>
<tag>value 1<t… more »
notes and references on web development and various things.
disclaimers
this site does not guarantee accuracy of information provided. codes are provided as is and are free to to use. use at your own risk. limited or no support will be provided.
under no circumstances shall this site be responsible or liable for any damages or consequences as a result of direct or indirect usage of any information provided.