I'm trying to loop through an XML file formatted like so:
<colors>
...
</colors>
<sets>
<settype type="hr" paletteid="2" mand_m_0="0" mand_f_0="0" mand_m_1="0" mand_f_1="0">
<set id="175" gender="M" club="0" colorable="0" selectable="0" preselectable="0">
<part id="996" type="hr" colorable="0" index="0" colorindex="0"/>
</set>
...
</settype>
<settype type="ch" paletteid="3" mand_m_0="1" mand_f_0="1" mand_m_1="0" mand_f_1="1">
<set id="680" gender="F" club="0" colorable="1" selectable="1" preselectable="0">
<part id="17" type="ch" colorable="1" index="0" colorindex="1"/>
<part id="17" type="ls" colorable="1" index="0" colorindex="1"/>
<part id="17" type="rs" colorable="1" index="0" colorindex="1"/>
</set>
...
</settype>
</sets>
I want to echo the id attribute of each set in a settype, where the settype's type attribute is 'hr'
This is what I've got so far, but I'm not sure what to do with the $hr array in order to echo the ids
$hr = $xml->xpath('//sets/settype[@type="hr"]/set');