XML data to PHP ?

Status
Not open for further replies.

Snell

Active Member
625
2009
18
250
Suppose I have the following data in XML format

PHP:
<?xml version="1.0"?>
<api>
  <query>
    <allusers>
      <u name="Y" />
      <u name="Y (usurped)" />
      <u name="Y 12345 ut" />
      <u name="Y 19" />
      <u name="Y 1praneeth" />
      <u name="Y 20" />
      <u name="Y 2112 Y" />
      <u name="Y 4 yellow" />
      <u name="Y A D A carlos alberto" />
      <u name="Y A N K O" />
    </allusers>
  </query>
  <query-continue>
    <allusers aufrom="Y Angora" />
  </query-continue>
</api>

How to interpret them into php?
 
2 comments
Status
Not open for further replies.
Back
Top