folks i have this xml file
What i want is how can i apply PHP so that i can get all the informationCode:<greatpeople>
<person>
<firstname> Edward </firstname>
<name> Jenner </name>
</person>
<person>
<firstname> Alan </firstname>
<name> Elion </name>
</person>
<person>
<firstname> Charles </firstname>
<name> Babbage </name>
</person>
<person>
<firstname> Alan </firstname>
<name> Touring </name>
</person>
<person>
<firstname> Ada </firstname>
<name> Byron </name>
</person>
</greatpeople>
where person firstname== Alan so that i get following xml as result
i have seen simple xml but that is only used for traversing... can any one tell how to do this in php??Code:<person>
<firstname> Alan </firstname>
<name> Elion </name>
</person>
<person>
<firstname> Alan </firstname>
<name> Touring </name>
</person>
