How can we process XML data using PHP so we can show only the requested data, or if it is possible at all?
For example, I have the following XML:
Code: Select all
<book>
<title>some title A</title>
<author>john doe</author>
<year>1995</year>
</book>
<book>
<title>some title B</title>
<author>jAlan Smith</author>
<year>2000</year>
</book>
...Any suggestions? Maybe using other language, say CSS?
Thanks!