Hi,
I have an xml document that looks like this:
<?xml version="1.0" encoding="utf-8"?>
<gallery>
<album title="This is the Title">
...content...
</album>
<album title="Another Album">
...content...
</album>
</gallery>
All I want to do is echo the "title" part of the first <album> with php. I can't seem to find a beginner's guide to xml parsing online, though. Anyone who could write a simple script to do this, or point out instructions for doing so would be very helpful!
G